Lines Matching full:incompletelut
44 class IncompleteLUT : internal::noncopyable
56 IncompleteLUT()
62 IncompleteLUT(const MatrixType& mat, RealScalar droptol=NumTraits<Scalar>::dummy_precision(), int fillfactor = 10)
81 eigen_assert(m_isInitialized && "IncompleteLUT is not initialized.");
97 IncompleteLUT<Scalar>& compute(const MatrixType& amat)
118 template<typename Rhs> inline const internal::solve_retval<IncompleteLUT, Rhs>
121 eigen_assert(m_isInitialized && "IncompleteLUT is not initialized.");
123 && "IncompleteLUT::solve(): invalid number of rows of the right hand side matrix b");
124 return internal::solve_retval<IncompleteLUT, Rhs>(*this, b.derived());
159 void IncompleteLUT<Scalar>::setDroptol(RealScalar droptol)
169 void IncompleteLUT<Scalar>::setFillfactor(int fillfactor)
186 int IncompleteLUT<Scalar>::QuickSplit(VectorV &row, VectorI &ind, int ncut)
221 void IncompleteLUT<Scalar>::analyzePattern(const _MatrixType& amat)
240 void IncompleteLUT<Scalar>::factorize(const _MatrixType& amat)
449 struct solve_retval<IncompleteLUT<_MatrixType>, Rhs>
450 : solve_retval_base<IncompleteLUT<_MatrixType>, Rhs>
452 typedef IncompleteLUT<_MatrixType> Dec;