Lines Matching refs:MINRES
148 class MINRES; variable
153 struct traits<MINRES<_MatrixType,_UpLo,_Preconditioner> >
198 class MINRES : public IterativeSolverBase<MINRES<_MatrixType,_UpLo,_Preconditioner> >
201 typedef IterativeSolverBase<MINRES> Base;
219 MINRES() : Base() {}
231 MINRES(const MatrixType& A) : Base(A) {}
234 ~MINRES(){}
242 inline const internal::solve_retval_with_guess<MINRES, Rhs, Guess>
249 <MINRES, Rhs, Guess>(*this, b.derived(), x0);
293 struct solve_retval<MINRES<_MatrixType,_UpLo,_Preconditioner>, Rhs>
294 : solve_retval_base<MINRES<_MatrixType,_UpLo,_Preconditioner>, Rhs>
296 typedef MINRES<_MatrixType,_UpLo,_Preconditioner> Dec;