OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GMRES
(Results
1 - 3
of
3
) sorted by null
/external/eigen/unsupported/test/
gmres.cpp
16
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/
GMRES.h
39
*
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.
56
bool
gmres
(const MatrixType & mat, const Rhs & rhs, Dest & x, const Preconditioner & precond,
function in namespace:Eigen::internal
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>
[
all
...]
/external/eigen/bench/spbench/
spbenchsolver.h
373
//
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 574 milliseconds