Some warning fixes

This commit is contained in:
Gael Guennebaud
2018-07-17 10:29:12 +02:00
parent 40797dbea3
commit 5539587b1f
3 changed files with 1 additions and 5 deletions

View File

@@ -499,11 +499,8 @@ void SparseLU<MatrixType, OrderingType>::factorize(const MatrixType& matrix)
eigen_assert(m_analysisIsOk && "analyzePattern() should be called first");
eigen_assert((matrix.rows() == matrix.cols()) && "Only for squared matrices");
typedef typename IndexVector::Scalar StorageIndex;
m_isInitialized = true;
// Apply the column permutation computed in analyzepattern()
// m_mat = matrix * m_perm_c.inverse();
m_mat = matrix;