ROL
|
Provides definitions for Krylov solvers. More...
#include <ROL_Krylov.hpp>
Public Member Functions | |
virtual | ~Krylov (void) |
Krylov (Real absTol=1.e-4, Real relTol=1.e-2, unsigned maxit=100) | |
virtual void | run (Vector< Real > &x, LinearOperator< Real > &A, const Vector< Real > &b, LinearOperator< Real > &M, int &iter, int &flag)=0 |
void | resetAbsoluteTolerance (const Real absTol) const |
void | resetRelativeTolerance (const Real relTol) const |
void | resetMaximumIteration (const unsigned maxit) |
Real | getAbsoluteTolerance (void) const |
Real | getRelativeTolerance (void) const |
unsigned | getMaximumIteration (void) const |
Private Attributes | |
Real | absTol_ |
Real | relTol_ |
unsigned | maxit_ |
Provides definitions for Krylov solvers.
Definition at line 57 of file ROL_Krylov.hpp.
|
inlinevirtual |
Definition at line 64 of file ROL_Krylov.hpp.
|
inline |
Definition at line 66 of file ROL_Krylov.hpp.
|
pure virtual |
Implemented in ROL::GMRES< Real >, ROL::ConjugateResiduals< Real >, and ROL::ConjugateGradients< Real >.
|
inline |
Definition at line 73 of file ROL_Krylov.hpp.
References ROL::Krylov< Real >::absTol_.
|
inline |
Definition at line 76 of file ROL_Krylov.hpp.
References ROL::Krylov< Real >::relTol_.
|
inline |
Definition at line 79 of file ROL_Krylov.hpp.
References ROL::Krylov< Real >::maxit_.
|
inline |
Definition at line 82 of file ROL_Krylov.hpp.
References ROL::Krylov< Real >::absTol_.
|
inline |
Definition at line 85 of file ROL_Krylov.hpp.
References ROL::Krylov< Real >::relTol_.
|
inline |
Definition at line 88 of file ROL_Krylov.hpp.
References ROL::Krylov< Real >::maxit_.
|
private |
Definition at line 59 of file ROL_Krylov.hpp.
Referenced by ROL::Krylov< Real >::getAbsoluteTolerance(), and ROL::Krylov< Real >::resetAbsoluteTolerance().
|
private |
Definition at line 60 of file ROL_Krylov.hpp.
Referenced by ROL::Krylov< Real >::getRelativeTolerance(), and ROL::Krylov< Real >::resetRelativeTolerance().
|
private |
Definition at line 61 of file ROL_Krylov.hpp.
Referenced by ROL::Krylov< Real >::getMaximumIteration(), and ROL::Krylov< Real >::resetMaximumIteration().