aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Sparse
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-04-01 14:07:38 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-04-01 14:07:38 +0000
commit0f8e692b3f5edcab61d586d0a996a2e30bbb68a2 (patch)
tree123daf9331ebec2e605545aa296a7ca1d7cec753 /Eigen/Sparse
parent113fc3a2606997533287921ccec49e320bf9f79b (diff)
* Find SuperLU also when it is installed without a superlu/ prefix
* Some more CoeffReturnType changes
Diffstat (limited to 'Eigen/Sparse')
-rw-r--r--Eigen/Sparse14
1 files changed, 7 insertions, 7 deletions
diff --git a/Eigen/Sparse b/Eigen/Sparse
index 536c28454..6de24d34d 100644
--- a/Eigen/Sparse
+++ b/Eigen/Sparse
@@ -46,21 +46,21 @@
#ifdef EIGEN_SUPERLU_SUPPORT
typedef int int_t;
- #include "superlu/slu_Cnames.h"
- #include "superlu/supermatrix.h"
- #include "superlu/slu_util.h"
+ #include "slu_Cnames.h"
+ #include "supermatrix.h"
+ #include "slu_util.h"
namespace SuperLU_S {
- #include "superlu/slu_sdefs.h"
+ #include "slu_sdefs.h"
}
namespace SuperLU_D {
- #include "superlu/slu_ddefs.h"
+ #include "slu_ddefs.h"
}
namespace SuperLU_C {
- #include "superlu/slu_cdefs.h"
+ #include "slu_cdefs.h"
}
namespace SuperLU_Z {
- #include "superlu/slu_zdefs.h"
+ #include "slu_zdefs.h"
}
namespace Eigen { struct SluMatrix; }
#endif