1 #ifndef EIGEN_PASTIXSUPPORT_MODULE_H
2 #define EIGEN_PASTIXSUPPORT_MODULE_H
6 #include "src/Core/util/DisableStupidWarnings.h"
10 #include <pastix_nompi.h>
18 /** \ingroup Support_modules
19 * \defgroup PaStiXSupport_Module PaStiXSupport module
21 * This module provides an interface to the <a href="http://pastix.gforge.inria.fr/">PaSTiX</a> library.
22 * PaSTiX is a general \b supernodal, \b parallel and \b opensource sparse solver.
23 * It provides the two following main factorization classes:
24 * - class PastixLLT : a supernodal, parallel LLt Cholesky factorization.
25 * - class PastixLDLT: a supernodal, parallel LDLt Cholesky factorization.
26 * - class PastixLU : a supernodal, parallel LU factorization (optimized for a symmetric pattern).
29 * #include <Eigen/PaStiXSupport>
32 * In order to use this module, the PaSTiX headers must be accessible from the include paths, and your binary must be linked to the PaSTiX library and its dependencies.
33 * The dependencies depend on how PaSTiX has been compiled.
34 * For a cmake based project, you can use our FindPaSTiX.cmake module to help you in this task.
38 #include "src/misc/Solve.h"
39 #include "src/misc/SparseSolve.h"
41 #include "src/PaStiXSupport/PaStiXSupport.h"
44 #include "src/Core/util/ReenableStupidWarnings.h"
46 #endif // EIGEN_PASTIXSUPPORT_MODULE_H