2011-12-05 14:52:21 +07:00
|
|
|
#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>
|
|
|
|
|
|
2011-12-09 16:52:37 +01:00
|
|
|
/** \ingroup Support_modules
|
2012-02-27 13:23:21 +01:00
|
|
|
* \defgroup PardisoSupport_Module PardisoSupport module
|
2011-12-05 14:52:21 +07:00
|
|
|
*
|
2011-12-09 16:52:37 +01:00
|
|
|
* This module brings support for the Intel(R) MKL PARDISO direct sparse solvers
|
2011-12-05 14:52:21 +07:00
|
|
|
*
|
|
|
|
|
* \code
|
2012-02-27 13:23:21 +01:00
|
|
|
* #include <Eigen/PardisoSupport>
|
2011-12-05 14:52:21 +07:00
|
|
|
* \endcode
|
|
|
|
|
*/
|
|
|
|
|
|
2012-02-27 13:23:21 +01:00
|
|
|
#include "src/PardisoSupport/PardisoSupport.h"
|
2011-12-05 14:52:21 +07:00
|
|
|
|
|
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
|
|
|
|
|
|
#endif // EIGEN_PARDISOSUPPORT_MODULE_H
|