Home | History | Annotate | Download | only in IterativeSolvers

Lines Matching refs:IncompleteCholesky

30 class IncompleteCholesky : internal::noncopyable
43 IncompleteCholesky() : m_shift(1),m_factorizationIsOk(false) {}
44 IncompleteCholesky(const MatrixType& matrix) : m_shift(1),m_factorizationIsOk(false)
106 template<typename Rhs> inline const internal::solve_retval<IncompleteCholesky, Rhs>
113 return internal::solve_retval<IncompleteCholesky, Rhs>(*this, b.derived());
132 void IncompleteCholesky<Scalar,_UpLo, OrderingType>::factorize(const _MatrixType& mat)
241 inline void IncompleteCholesky<Scalar,_UpLo, OrderingType>::updateList(const IdxType& colPtr, IdxType& rowIdx, SclType& vals, const Index& col, const Index& jk, IndexType& firstElt, VectorList& listCol)
262 struct solve_retval<IncompleteCholesky<_Scalar, _UpLo, OrderingType>, Rhs>
263 : solve_retval_base<IncompleteCholesky<_Scalar, _UpLo, OrderingType>, Rhs>
265 typedef IncompleteCholesky<_Scalar, _UpLo, OrderingType> Dec;