aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseLU
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-09-01 17:16:32 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-09-01 17:16:32 +0200
commit863b7362bc6cbd6f5c3ba96b4d6935557f9d9486 (patch)
treec50bbe586e75a833ae7cd0004e61ca6994e3a9a8 /Eigen/src/SparseLU
parent1bf3b3484975ead812c4615f0d54f25d859320c3 (diff)
Fix usage of m_isInitialized in SparseLU and Pastix support.
Diffstat (limited to 'Eigen/src/SparseLU')
-rw-r--r--Eigen/src/SparseLU/SparseLU.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Eigen/src/SparseLU/SparseLU.h b/Eigen/src/SparseLU/SparseLU.h
index eb61fe3d9..fb01f99cd 100644
--- a/Eigen/src/SparseLU/SparseLU.h
+++ b/Eigen/src/SparseLU/SparseLU.h
@@ -482,6 +482,8 @@ void SparseLU<MatrixType, OrderingType>::factorize(const MatrixType& matrix)
typedef typename IndexVector::Scalar Index;
+ m_isInitialized = true;
+
// Apply the column permutation computed in analyzepattern()
// m_mat = matrix * m_perm_c.inverse();