* Find SuperLU also when it is installed without a superlu/ prefix

* Some more CoeffReturnType changes
This commit is contained in:
Benoit Jacob
2009-04-01 14:07:38 +00:00
parent 113fc3a260
commit 0f8e692b3f
6 changed files with 22 additions and 19 deletions

View File

@@ -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