Home
last modified time | relevance | path

Searched refs:DGMRES (Results 1 – 2 of 2) sorted by relevance

/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DDGMRES.h19 class DGMRES; variable
24 struct traits<DGMRES<_MatrixType,_Preconditioner> >
101 class DGMRES : public IterativeSolverBase<DGMRES<_MatrixType,_Preconditioner> >
103 typedef IterativeSolverBase<DGMRES> Base;
124DGMRES() : Base(),m_restart(30),m_neig(0),m_r(0),m_maxNeig(5),m_isDeflAllocated(false),m_isDeflIni…
136DGMRES(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,
[all …]
/external/eigen/unsupported/test/
Ddgmres.cpp16 DGMRES<SparseMatrix<T>, DiagonalPreconditioner<T> > dgmres_colmajor_diag; in test_dgmres_T()
17 DGMRES<SparseMatrix<T>, IdentityPreconditioner > dgmres_colmajor_I; in test_dgmres_T()
18 DGMRES<SparseMatrix<T>, IncompleteLUT<T> > dgmres_colmajor_ilut; in test_dgmres_T()