GEOSX
|
Common interface for identity preconditioning operator. More...
#include <PreconditionerJacobi.hpp>
Public Types | |
using | Base = PreconditionerBase< LAI > |
Alias for base type. | |
using | Vector = typename Base::Vector |
Alias for vector type. | |
using | Matrix = typename Base::Matrix |
Alias for matrix type. | |
Public Types inherited from geosx::PreconditionerBase< LAI > | |
using | Base = LinearOperator< typename LAI::ParallelVector > |
Alias for base type. | |
using | Vector = typename Base::Vector |
Alias for vector type. | |
using | Matrix = typename LAI::ParallelMatrix |
Alias for matrix type. | |
Public Types inherited from geosx::LinearOperator< LAI::ParallelVector > | |
using | Vector = LAI::ParallelVector |
Alias for template parameter. | |
Public Member Functions | |
virtual void | compute (Matrix const &mat) override |
Compute the preconditioner from a matrix. More... | |
virtual void | compute (Matrix const &mat, DofManager const &dofManager) override |
Compute the preconditioner from a matrix. More... | |
virtual void | clear () override |
Clean up the preconditioner setup. More... | |
virtual globalIndex | numGlobalRows () const override final |
Get the number of global rows. More... | |
virtual globalIndex | numGlobalCols () const override final |
Get the number of global columns. More... | |
virtual void | apply (Vector const &src, Vector &dst) const override |
Apply operator to a vector. More... | |
Public Member Functions inherited from geosx::PreconditionerBase< LAI > | |
bool | ready () const |
Chech if preconditioner is ready to use. More... | |
Matrix const & | matrix () const |
Access the matrix the preconditioner was computed from. More... | |
virtual bool | hasPreconditionerMatrix () const |
Check whether the preconditioner is available in matrix (explicit) form. More... | |
virtual Matrix const & | preconditionerMatrix () const |
Access the preconditioner in matrix form (whenever available). It must be overridden by the specific preconditioner. More... | |
Public Member Functions inherited from geosx::LinearOperator< LAI::ParallelVector > | |
LinearOperator ()=default | |
Constructor. | |
virtual | ~LinearOperator ()=default |
Destructor. | |
virtual void | apply (Vector const &src, Vector &dst) const=0 |
Apply operator to a vector. More... | |
virtual void | residual (Vector const &x, Vector const &b, Vector &r) const |
Compute residual r = Ax - b . More... | |
Common interface for identity preconditioning operator.
LAI | linear algebra interface providing vectors, matrices and solvers |
Definition at line 29 of file PreconditionerJacobi.hpp.
|
inlineoverridevirtual |
Apply operator to a vector.
src | Input vector (src). |
dst | Output vector (dst). |
Definition at line 108 of file PreconditionerJacobi.hpp.
|
inlineoverridevirtual |
Clean up the preconditioner setup.
Releases memory used and allows the matrix to be deleted cleanly. This method should be called before the matrix used to compute the preconditioner goes out of scope or is re-created. Some implementations require the matrix to outlive the preconditioner (for example, Trilinos/ML may crash the program if deleted after the matrix).
Reimplemented from geosx::PreconditionerBase< LAI >.
Definition at line 77 of file PreconditionerJacobi.hpp.
|
inlineoverridevirtual |
Compute the preconditioner from a matrix.
mat | the matrix to precondition. |
Reimplemented from geosx::PreconditionerBase< LAI >.
Definition at line 46 of file PreconditionerJacobi.hpp.
|
inlineoverridevirtual |
Compute the preconditioner from a matrix.
mat | the matrix to precondition |
dofManager | the Degree-of-Freedom manager associated with matrix |
Reimplemented from geosx::PreconditionerBase< LAI >.
Definition at line 59 of file PreconditionerJacobi.hpp.
|
inlinefinaloverridevirtual |
Get the number of global columns.
Reimplemented from geosx::PreconditionerBase< LAI >.
Definition at line 96 of file PreconditionerJacobi.hpp.
|
inlinefinaloverridevirtual |
Get the number of global rows.
Reimplemented from geosx::PreconditionerBase< LAI >.
Definition at line 86 of file PreconditionerJacobi.hpp.