aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseQR
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-02-22 14:50:47 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-02-22 14:50:47 +0100
commit7fe64191712a0174f06085410550f67fe61c20a3 (patch)
tree5a192d0ea4e56565a845adf807802f22338bf322 /Eigen/src/SparseQR
parente71bc79f2a9620f0c37a1af5668541d6028c5c9c (diff)
remove double parenthesis
Diffstat (limited to 'Eigen/src/SparseQR')
-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)
{