Lines Matching refs:Rhs
223 template<typename Rhs>
224 inline const internal::solve_retval<CholmodBase, Rhs>
225 solve(const MatrixBase<Rhs>& b) const in solve()
230 return internal::solve_retval<CholmodBase, Rhs>(*this, b.derived()); in solve()
237 template<typename Rhs>
238 inline const internal::sparse_solve_retval<CholmodBase, Rhs>
239 solve(const SparseMatrixBase<Rhs>& b) const in solve()
244 return internal::sparse_solve_retval<CholmodBase, Rhs>(*this, b.derived()); in solve()
292 template<typename Rhs,typename Dest>
293 void _solve(const MatrixBase<Rhs> &b, MatrixBase<Dest> &dest) const in _solve()
301 Rhs& b_ref(b.const_cast_derived()); in _solve()
577 template<typename _MatrixType, int _UpLo, typename Derived, typename Rhs>
578 struct solve_retval<CholmodBase<_MatrixType,_UpLo,Derived>, Rhs>
579 : solve_retval_base<CholmodBase<_MatrixType,_UpLo,Derived>, Rhs>
582 EIGEN_MAKE_SOLVE_HELPERS(Dec,Rhs)
590 template<typename _MatrixType, int _UpLo, typename Derived, typename Rhs>
591 struct sparse_solve_retval<CholmodBase<_MatrixType,_UpLo,Derived>, Rhs>
592 : sparse_solve_retval_base<CholmodBase<_MatrixType,_UpLo,Derived>, Rhs>
595 EIGEN_MAKE_SPARSE_SOLVE_HELPERS(Dec,Rhs)