Lines Matching refs:DGMRES
19 class DGMRES; variable
24 struct traits<DGMRES<_MatrixType,_Preconditioner> >
101 class DGMRES : public IterativeSolverBase<DGMRES<_MatrixType,_Preconditioner> >
103 typedef IterativeSolverBase<DGMRES> Base;
124 …DGMRES() : Base(),m_restart(30),m_neig(0),m_r(0),m_maxNeig(5),m_isDeflAllocated(false),m_isDeflIni…
136 …DGMRES(const MatrixType& A) : Base(A),m_restart(30),m_neig(0),m_r(0),m_maxNeig(5),m_isDeflAllocate…
139 ~DGMRES() {}
147 inline const internal::solve_retval_with_guess<DGMRES, Rhs, Guess>
154 <DGMRES, Rhs, Guess>(*this, b.derived(), x0);
256 void DGMRES<_MatrixType, _Preconditioner>::dgmres(const MatrixType& mat,const Rhs& rhs, Dest& x,
300 int DGMRES<_MatrixType, _Preconditioner>::dgmresCycle(const MatrixType& mat, const Preconditioner& …
392 void DGMRES<_MatrixType, _Preconditioner>::dgmresInitDeflation(Index& rows) const
402 inline typename DGMRES<_MatrixType, _Preconditioner>::ComplexVector DGMRES<_MatrixType, _Preconditi…
408 inline typename DGMRES<_MatrixType, _Preconditioner>::ComplexVector DGMRES<_MatrixType, _Preconditi…
434 int DGMRES<_MatrixType, _Preconditioner>::dgmresComputeDeflationData(const MatrixType& mat, const P…
518 int DGMRES<_MatrixType, _Preconditioner>::dgmresApplyDeflation(const RhsType &x, DestType &y) const
528 struct solve_retval<DGMRES<_MatrixType, _Preconditioner>, Rhs>
529 : solve_retval_base<DGMRES<_MatrixType, _Preconditioner>, Rhs>
531 typedef DGMRES<_MatrixType, _Preconditioner> Dec;