Belos solver class.
This class warps the Trilinos Belos package
|
| BelosSolver (const SparseMatrix &A, const int solver=BelosSolvers::BiCGStab) |
| Constructor (sparse matrix)
|
|
std::string | currentParams () const |
| Returns current parameters.
|
|
Epetra_Operator * | getPrecOperator () const |
| Returns pointer to preconditioner operator. More...
|
|
void | getSolution (gsVector< real_t > &sol, const int rank=0) const |
| Returns solution vector.
|
|
int | numIterations () const |
| Returns number of iterations.
|
|
void | set (const std::string &name, const int &value) |
| Sets parameters. More...
|
|
void | set (const std::string &name, const bool &value) |
| Sets bool paramters.
|
|
void | set (const std::string &name, const double &value) |
| Sets double paramters.
|
|
void | set (const std::string &name, const std::string &value) |
| Sets string paramters.
|
|
void | setHermitian () |
| Sets Hermitian problem type. More...
|
|
void | setOptions (const gsOptionList &opt) |
| Set parameters from option list. More...
|
|
int | setPreconditioner (const std::string &precType, const SparseMatrix &A, const bool &leftprec, const int &OverlapLevel=0) |
| OverlapLevel: must be >= 0. If Comm.NumProc() == 1, it is ignored.
|
|
const Vector & | solve (const Vector &b) |
| Solves problem for the given a right-hand side vector.
|
|
std::string | status () const |
| Returns status and timing of solver. More...
|
|
std::string | timing () const |
| Returns timing of the solver.
|
|
std::string | validParams () const |
| Returns information about parameters. More...
|
|
| ~BelosSolver () |
| Destructor.
|
|