bug #1053: SparseLU failed with EIGEN_DEFAULT_TO_ROW_MAJOR

This commit is contained in:
Christoph Hertzberg
2015-08-07 23:10:56 +02:00
parent 7e0d7a76b8
commit cac6b23033
6 changed files with 15 additions and 13 deletions

View File

@@ -22,6 +22,8 @@ class SparseLUImpl
public:
typedef Matrix<Scalar,Dynamic,1> ScalarVector;
typedef Matrix<StorageIndex,Dynamic,1> IndexVector;
typedef Matrix<Scalar,Dynamic,Dynamic,ColMajor> ScalarMatrix;
typedef Map<ScalarMatrix, 0, OuterStride<> > MappedMatrixBlock;
typedef typename ScalarVector::RealScalar RealScalar;
typedef Ref<Matrix<Scalar,Dynamic,1> > BlockScalarVector;
typedef Ref<Matrix<StorageIndex,Dynamic,1> > BlockIndexVector;