aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Sparse
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-12-17 10:43:46 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-12-17 10:43:46 +0100
commit30d47860ddcc3974bbe8869f0a6ed31a670052b0 (patch)
tree3486bf01c28165e859fe2ee003f56417649f2c1c /Eigen/src/Sparse
parent34c95029cad15201efb161a59d72f36cbf997f16 (diff)
more fixes
Diffstat (limited to 'Eigen/src/Sparse')
-rw-r--r--Eigen/src/Sparse/SparseLDLT.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Sparse/SparseLDLT.h b/Eigen/src/Sparse/SparseLDLT.h
index ea5d345f5..a30bd5ccd 100644
--- a/Eigen/src/Sparse/SparseLDLT.h
+++ b/Eigen/src/Sparse/SparseLDLT.h
@@ -334,7 +334,7 @@ bool SparseLDLT<MatrixType, Backend>::solveInPlace(MatrixBase<Derived> &b) const
if (m_matrix.nonZeros()>0) // otherwise L==I
m_matrix.template triangularView<UnitLowerTriangular>().solveInPlace(b);
- b = b.cwise() / m_diag;
+ b = b.cwiseQuotient(m_diag);
// FIXME should be .adjoint() but it fails to compile...
if (m_matrix.nonZeros()>0) // otherwise L==I