remove double parenthesis

This commit is contained in:
Gael Guennebaud 2013-02-22 14:50:47 +01:00
parent e71bc79f2a
commit 7fe6419171

View File

@ -358,7 +358,7 @@ void SparseQR<MatrixType,OrderingType>::factorize(const MatrixType& mat)
tval(itq.row()) -= itq.value() * tdot; tval(itq.row()) -= itq.value() * tdot;
} }
// Detect fill-in for the current column of Q // 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) for (typename QRMatrixType::InnerIterator itq(m_Q, curIdx); itq; ++itq)
{ {