mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
31 lines
568 B
Plaintext
31 lines
568 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>
|
||
|
|
||
|
namespace Eigen {
|
||
|
|
||
|
/** \ingroup Sparse_modules
|
||
|
* \defgroup PARDISOSupport_Module Intel(R) MKL PARDISO support
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
* \code
|
||
|
* #include <Eigen/PARDISOSupport>
|
||
|
* \endcode
|
||
|
*/
|
||
|
|
||
|
#include "src/PARDISOSupport/PARDISOSupport.h"
|
||
|
|
||
|
} // namespace Eigen
|
||
|
|
||
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
||
|
|
||
|
#endif // EIGEN_PARDISOSUPPORT_MODULE_H
|