Fix compilation of PardisoSupport

This commit is contained in:
Gael Guennebaud
2015-12-11 11:11:00 +01:00
parent 30b5c4cd14
commit bcb4f126a7
2 changed files with 3 additions and 3 deletions

View File

@@ -117,7 +117,9 @@ class PardisoImpl : public SparseSolverBase<Derived>
typedef Matrix<StorageIndex, MatrixType::RowsAtCompileTime, 1> IntColVectorType;
typedef Array<StorageIndex,64,1,DontAlign> ParameterType;
enum {
ScalarIsComplex = NumTraits<Scalar>::IsComplex
ScalarIsComplex = NumTraits<Scalar>::IsComplex,
ColsAtCompileTime = Dynamic,
MaxColsAtCompileTime = Dynamic
};
PardisoImpl()