Lines Matching refs:GMRES
208 class GMRES; variable
213 struct traits<GMRES<_MatrixType,_Preconditioner> >
254 class GMRES : public IterativeSolverBase<GMRES<_MatrixType,_Preconditioner> >
256 typedef IterativeSolverBase<GMRES> Base;
276 GMRES() : Base(), m_restart(30) {}
288 GMRES(const MatrixType& A) : Base(A), m_restart(30) {}
290 ~GMRES() {}
307 inline const internal::solve_retval_with_guess<GMRES, Rhs, Guess>
314 <GMRES, Rhs, Guess>(*this, b.derived(), x0);
354 struct solve_retval<GMRES<_MatrixType, _Preconditioner>, Rhs>
355 : solve_retval_base<GMRES<_MatrixType, _Preconditioner>, Rhs>
357 typedef GMRES<_MatrixType, _Preconditioner> Dec;