123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef EIGEN_SPARSECHOLESKY_MODULE_H
- #define EIGEN_SPARSECHOLESKY_MODULE_H
- #include "SparseCore"
- #include "OrderingMethods"
- #include "src/Core/util/DisableStupidWarnings.h"
- #ifdef EIGEN_MPL2_ONLY
- #error The SparseCholesky module has nothing to offer in MPL2 only mode
- #endif
- #include "src/SparseCholesky/SimplicialCholesky.h"
- #ifndef EIGEN_MPL2_ONLY
- #include "src/SparseCholesky/SimplicialCholesky_impl.h"
- #endif
- #include "src/Core/util/ReenableStupidWarnings.h"
- #endif
|