1 #ifndef EIGEN_CHOLMODSUPPORT_MODULE_H
2 #define EIGEN_CHOLMODSUPPORT_MODULE_H
6 #include "src/Core/util/DisableStupidWarnings.h"
12 /** \ingroup Support_modules
13 * \defgroup CholmodSupport_Module CholmodSupport module
15 * This module provides an interface to the Cholmod library which is part of the <a href="http://www.suitesparse.com">suitesparse</a> package.
16 * It provides the two following main factorization classes:
17 * - class CholmodSupernodalLLT: a supernodal LLT Cholesky factorization.
18 * - class CholmodDecomposiiton: a general L(D)LT Cholesky factorization with automatic or explicit runtime selection of the underlying factorization method (supernodal or simplicial).
20 * For the sake of completeness, this module also propose the two following classes:
21 * - class CholmodSimplicialLLT
22 * - class CholmodSimplicialLDLT
23 * Note that these classes does not bring any particular advantage compared to the built-in
24 * SimplicialLLT and SimplicialLDLT factorization classes.
27 * #include <Eigen/CholmodSupport>
30 * In order to use this module, the cholmod headers must be accessible from the include paths, and your binary must be linked to the cholmod library and its dependencies.
31 * The dependencies depend on how cholmod has been compiled.
32 * For a cmake based project, you can use our FindCholmod.cmake module to help you in this task.
36 #include "src/misc/Solve.h"
37 #include "src/misc/SparseSolve.h"
39 #include "src/CholmodSupport/CholmodSupport.h"
42 #include "src/Core/util/ReenableStupidWarnings.h"
44 #endif // EIGEN_CHOLMODSUPPORT_MODULE_H