sparse module: added some documentation for the LLT solver

This commit is contained in:
Gael Guennebaud
2008-10-18 18:33:56 +00:00
parent cfca7f71fe
commit 6be0131774
4 changed files with 70 additions and 36 deletions

View File

@@ -199,15 +199,8 @@ void SparseLLT<MatrixType,Cholmod>::solveInPlace(MatrixBase<Derived> &b) const
ei_assert(size==b.rows());
if (m_status & MatrixLIsDirty)
{
// ei_assert(!(m_status & SupernodalFactorIsDirty));
// taucs_supernodal_solve_llt(m_taucsSupernodalFactor,double* b);
matrixL();
}
// else
{
Base::solveInPlace(b);
}
Base::solveInPlace(b);
}
#endif // EIGEN_CHOLMODSUPPORT_H