|
My Project
|
Class abstracting a preconditioner or an inverse operator. More...
#include <applier.hpp>
Public Member Functions | |
| OperatorApplier (T &t) | |
| Constructor. More... | |
| void | apply (Vector &v, Vector &d) |
| Apply the given operator to a vector. More... | |
| void | pre (Vector &x, Vector &b) |
| Preprocess a preconditioner, noop for an inverse operator. More... | |
| void | post (Vector &x) |
| Postprocess a preconditioner, noop for an inverse operator. More... | |
Public Attributes | |
| T & | A |
Class abstracting a preconditioner or an inverse operator.
|
inline |
Constructor.
| [in] | t | The preconditioner or inverse operator |
Apply the given operator to a vector.
| [out] | v | The result |
| [in] | d | The vector to apply to |
| void Opm::Elasticity::PreApplier::post | ( | Vector & | x | ) |
Postprocess a preconditioner, noop for an inverse operator.
| [in/out] | x The final solution |
Preprocess a preconditioner, noop for an inverse operator.
| [in/out] | b The load vector |
| [in/out] | x The initial (guessed) solution |