mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-22 01:29:35 +08:00
Fix compilation of PardisoSupport
This commit is contained in:
parent
30b5c4cd14
commit
bcb4f126a7
2
Eigen/PardisoSupport
Normal file → Executable file
2
Eigen/PardisoSupport
Normal file → Executable file
@ -14,8 +14,6 @@
|
|||||||
|
|
||||||
#include <mkl_pardiso.h>
|
#include <mkl_pardiso.h>
|
||||||
|
|
||||||
#include <unsupported/Eigen/SparseExtra>
|
|
||||||
|
|
||||||
/** \ingroup Support_modules
|
/** \ingroup Support_modules
|
||||||
* \defgroup PardisoSupport_Module PardisoSupport module
|
* \defgroup PardisoSupport_Module PardisoSupport module
|
||||||
*
|
*
|
||||||
|
@ -117,7 +117,9 @@ class PardisoImpl : public SparseSolverBase<Derived>
|
|||||||
typedef Matrix<StorageIndex, MatrixType::RowsAtCompileTime, 1> IntColVectorType;
|
typedef Matrix<StorageIndex, MatrixType::RowsAtCompileTime, 1> IntColVectorType;
|
||||||
typedef Array<StorageIndex,64,1,DontAlign> ParameterType;
|
typedef Array<StorageIndex,64,1,DontAlign> ParameterType;
|
||||||
enum {
|
enum {
|
||||||
ScalarIsComplex = NumTraits<Scalar>::IsComplex
|
ScalarIsComplex = NumTraits<Scalar>::IsComplex,
|
||||||
|
ColsAtCompileTime = Dynamic,
|
||||||
|
MaxColsAtCompileTime = Dynamic
|
||||||
};
|
};
|
||||||
|
|
||||||
PardisoImpl()
|
PardisoImpl()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user