mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
27 lines
599 B
Plaintext
27 lines
599 B
Plaintext
#ifndef EIGEN_PARDISOSUPPORT_MODULE_H
|
|
#define EIGEN_PARDISOSUPPORT_MODULE_H
|
|
|
|
#include "SparseCore"
|
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
|
|
|
#include <mkl_pardiso.h>
|
|
|
|
#include <unsupported/Eigen/SparseExtra>
|
|
|
|
/** \ingroup Support_modules
|
|
* \defgroup PardisoSupport_Module PardisoSupport module
|
|
*
|
|
* This module brings support for the Intel(R) MKL PARDISO direct sparse solvers
|
|
*
|
|
* \code
|
|
* #include <Eigen/PardisoSupport>
|
|
* \endcode
|
|
*/
|
|
|
|
#include "src/PardisoSupport/PardisoSupport.h"
|
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
#endif // EIGEN_PARDISOSUPPORT_MODULE_H
|