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

/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.
208 class GMRES;
213 struct traits<GMRES<_MatrixType,_Preconditioner> >
222 * \brief A GMRES solver for sparse square problems
240 * GMRES<SparseMatrix<double> > solver(A);
267 class GMRES : public IterativeSolverBase<GMRES<_MatrixType,_Preconditioner> > class in namespace:Eigen
269 typedef IterativeSolverBase<GMRES> Bas
289 GMRES() : Base(), m_restart(30) {} function in class:Eigen::GMRES
301 GMRES(const MatrixType& A) : Base(A), m_restart(30) {} function in class:Eigen::GMRES
[all...]

Completed in 79 milliseconds