aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Eigen/src/SparseQR/SparseQR.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/SparseQR/SparseQR.h b/Eigen/src/SparseQR/SparseQR.h
index 7ea98fa3d..a1cd5d034 100644
--- a/Eigen/src/SparseQR/SparseQR.h
+++ b/Eigen/src/SparseQR/SparseQR.h
@@ -358,7 +358,7 @@ void SparseQR<MatrixType,OrderingType>::factorize(const MatrixType& mat)
tval(itq.row()) -= itq.value() * tdot;
}
// Detect fill-in for the current column of Q
- if((m_etree(Ridx(i)) == rank) )
+ if(m_etree(Ridx(i)) == rank)
{
for (typename QRMatrixType::InnerIterator itq(m_Q, curIdx); itq; ++itq)
{