aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Sparse
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-06-24 16:35:02 +0200
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-06-24 16:35:02 +0200
commit96dca681b04c9bd10081ef46453049cda1ee74df (patch)
treee635d2c7a78751dd9a8b7d42a0b979566966f1a2 /Eigen/Sparse
parenta44f7cf440b009019e6d957195aa1f438ff82b81 (diff)
use <...> for system headers
Diffstat (limited to 'Eigen/Sparse')
-rw-r--r--Eigen/Sparse20
1 files changed, 10 insertions, 10 deletions
diff --git a/Eigen/Sparse b/Eigen/Sparse
index b0f2b2a12..364fd50c9 100644
--- a/Eigen/Sparse
+++ b/Eigen/Sparse
@@ -17,7 +17,7 @@
#ifdef EIGEN_CHOLMOD_SUPPORT
extern "C" {
- #include "cholmod.h"
+ #include <cholmod.h>
}
#endif
@@ -27,7 +27,7 @@
#define finite
#define isinf
extern "C" {
- #include "taucs.h"
+ #include <taucs.h>
}
#undef isnan
#undef finite
@@ -46,27 +46,27 @@
#ifdef EIGEN_SUPERLU_SUPPORT
typedef int int_t;
- #include "slu_Cnames.h"
- #include "supermatrix.h"
- #include "slu_util.h"
+ #include <slu_Cnames.h>
+ #include <supermatrix.h>
+ #include <slu_util.h>
namespace SuperLU_S {
- #include "slu_sdefs.h"
+ #include <slu_sdefs.h>
}
namespace SuperLU_D {
- #include "slu_ddefs.h"
+ #include <slu_ddefs.h>
}
namespace SuperLU_C {
- #include "slu_cdefs.h"
+ #include <slu_cdefs.h>
}
namespace SuperLU_Z {
- #include "slu_zdefs.h"
+ #include <slu_zdefs.h>
}
namespace Eigen { struct SluMatrix; }
#endif
#ifdef EIGEN_UMFPACK_SUPPORT
- #include "umfpack.h"
+ #include <umfpack.h>
#endif
namespace Eigen {