From 7fe64191712a0174f06085410550f67fe61c20a3 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 22 Feb 2013 14:50:47 +0100 Subject: [PATCH] remove double parenthesis --- Eigen/src/SparseQR/SparseQR.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::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) {