mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
35 lines
622 B
Plaintext
35 lines
622 B
Plaintext
#ifndef EIGEN_PASTIXSUPPORT_MODULE_H
|
|
#define EIGEN_PASTIXSUPPORT_MODULE_H
|
|
|
|
#include "SparseCore"
|
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
|
|
|
#include <complex.h>
|
|
extern "C" {
|
|
#include <pastix_nompi.h>
|
|
#include <pastix.h>
|
|
}
|
|
|
|
#ifdef complex
|
|
#undef complex
|
|
#endif
|
|
|
|
/** \ingroup Support_modules
|
|
* \defgroup PaStiXSupport_Module PaStiXSupport module
|
|
*
|
|
* \code
|
|
* #include <Eigen/PaStiXSupport>
|
|
* \endcode
|
|
*/
|
|
|
|
#include "src/misc/Solve.h"
|
|
#include "src/misc/SparseSolve.h"
|
|
|
|
#include "src/PaStiXSupport/PaStiXSupport.h"
|
|
|
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
#endif // EIGEN_PASTIXSUPPORT_MODULE_H
|