aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Sparse/UmfPackSupport.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Sparse/UmfPackSupport.h')
-rw-r--r--Eigen/src/Sparse/UmfPackSupport.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Sparse/UmfPackSupport.h b/Eigen/src/Sparse/UmfPackSupport.h
index 00fa7e57d..1bb40a7c3 100644
--- a/Eigen/src/Sparse/UmfPackSupport.h
+++ b/Eigen/src/Sparse/UmfPackSupport.h
@@ -127,8 +127,8 @@ class SparseLU<MatrixType,UmfPack> : public SparseLU<MatrixType>
typedef Matrix<Scalar,Dynamic,1> Vector;
typedef Matrix<int, 1, MatrixType::ColsAtCompileTime> IntRowVectorType;
typedef Matrix<int, MatrixType::RowsAtCompileTime, 1> IntColVectorType;
- typedef SparseMatrix<Scalar,Lower|UnitDiagBit> LMatrixType;
- typedef SparseMatrix<Scalar,Upper> UMatrixType;
+ typedef SparseMatrix<Scalar,LowerTriangular|UnitDiagBit> LMatrixType;
+ typedef SparseMatrix<Scalar,UpperTriangular> UMatrixType;
using Base::m_flags;
using Base::m_status;