Home
last modified time | relevance | path

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

/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DDGMRES.h19 class DGMRES; variable
24 struct traits<DGMRES<_MatrixType,_Preconditioner> >
102 class DGMRES : public IterativeSolverBase<DGMRES<_MatrixType,_Preconditioner> >
104 typedef IterativeSolverBase<DGMRES> Base;
127DGMRES() : Base(),m_restart(30),m_neig(0),m_r(0),m_maxNeig(5),m_isDeflAllocated(false),m_isDeflIni…
140 …explicit DGMRES(const EigenBase<MatrixDerived>& A) : Base(A.derived()), m_restart(30),m_neig(0),m_…
142 ~DGMRES() {}
243 void DGMRES<_MatrixType, _Preconditioner>::dgmres(const MatrixType& mat,const Rhs& rhs, Dest& x,
287 int DGMRES<_MatrixType, _Preconditioner>::dgmresCycle(const MatrixType& mat, const Preconditioner& …
379 void DGMRES<_MatrixType, _Preconditioner>::dgmresInitDeflation(Index& rows) const
[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()
/external/eigen/unsupported/Eigen/
DIterativeSolvers36 #include "src/IterativeSolvers/DGMRES.h"
/external/eigen/doc/examples/
Dmatrixfree_cg.cpp116 Eigen::DGMRES<MatrixReplacement, Eigen::IdentityPreconditioner> gmres; in main()