12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef EIGEN_CHOLESKY_MODULE_H
- #define EIGEN_CHOLESKY_MODULE_H
- #include "Core"
- #include "Jacobi"
- #include "src/Core/util/DisableStupidWarnings.h"
- #include "src/Cholesky/LLT.h"
- #include "src/Cholesky/LDLT.h"
- #ifdef EIGEN_USE_LAPACKE
- #ifdef EIGEN_USE_MKL
- #include "mkl_lapacke.h"
- #else
- #include "src/misc/lapacke.h"
- #endif
- #include "src/Cholesky/LLT_LAPACKE.h"
- #endif
- #include "src/Core/util/ReenableStupidWarnings.h"
- #endif
|