Searched refs:GMRES (Results 1 - 4 of 4) sorted by relevance

/external/eigen/unsupported/test/
H A Dgmres.cpp16 GMRES<SparseMatrix<T>, DiagonalPreconditioner<T> > gmres_colmajor_diag;
17 GMRES<SparseMatrix<T>, IdentityPreconditioner > gmres_colmajor_I;
18 GMRES<SparseMatrix<T>, IncompleteLUT<T> > gmres_colmajor_ilut;
19 //GMRES<SparseMatrix<T>, SSORPreconditioner<T> > gmres_colmajor_ssor;
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DGMRES.h39 * GMRES: A Generalized Minimal Residual Algorithm for Solving Nonsymmetric Linear Systems.
47 * Implementations of the GMRES method.
51 * Implementation of the GMRES Method using Householder Transformations.
212 class GMRES;
217 struct traits<GMRES<_MatrixType,_Preconditioner> >
226 * \brief A GMRES solver for sparse square problems
244 * GMRES<SparseMatrix<double> > solver(A);
255 * GMRES can also be used in a matrix-free context, see the following \link MatrixfreeSolverExample example \endlink.
260 class GMRES : public IterativeSolverBase<GMRES<_MatrixTyp class in namespace:Eigen
282 GMRES() : Base(), m_restart(30) {} function in class:Eigen::GMRES
295 explicit GMRES(const EigenBase<MatrixDerived>& A) : Base(A.derived()), m_restart(30) {} function in class:Eigen::GMRES
[all...]
/external/eigen/doc/examples/
H A Dmatrixfree_cg.cpp109 Eigen::GMRES<MatrixReplacement, Eigen::IdentityPreconditioner> gmres;
112 std::cout << "GMRES: #iterations: " << gmres.iterations() << ", estimated error: " << gmres.error() << std::endl;
/external/eigen/bench/spbench/
H A Dspbenchsolver.h373 //GMRES
375 // cout << "\nSolving with GMRES ... \n";
376 // GMRES<SpMat> solver;
379 //GMRES+ILUT
381 cout << "\nSolving with GMRES and ILUT ... \n";
382 GMRES<SpMat, IncompleteLUT<Scalar> > solver;

Completed in 388 milliseconds