GEOSX
|
Common interface for preconditioning operators. More...
#include <PreconditionerBase.hpp>
Public Types | |
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) |
Compute the preconditioner from a matrix. More... | |
virtual void | compute (Matrix const &mat, DofManager const &dofManager) |
Compute the preconditioner from a matrix. More... | |
virtual void | clear () |
Clean up the preconditioner setup. More... | |
virtual globalIndex | numGlobalRows () const override |
Get the number of global rows. More... | |
virtual globalIndex | numGlobalCols () const override |
Get the number of global columns. More... | |
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 preconditioning operators.
LAI | linear algebra interface providing vectors, matrices and solvers |
Definition at line 31 of file PreconditionerBase.hpp.
|
inlinevirtual |
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 in geosx::BlockPreconditioner< LAI >, geosx::PreconditionerBlockJacobi< LAI >, geosx::HyprePreconditioner, geosx::PetscPreconditioner, geosx::TrilinosPreconditioner, geosx::PreconditionerJacobi< LAI >, and geosx::SeparateComponentPreconditioner< LAI >.
Definition at line 83 of file PreconditionerBase.hpp.
|
inlinevirtual |
Compute the preconditioner from a matrix.
mat | the matrix to precondition. |
Reimplemented in geosx::PreconditionerBlockJacobi< LAI >, and geosx::PreconditionerJacobi< LAI >.
Definition at line 54 of file PreconditionerBase.hpp.
|
inlinevirtual |
Compute the preconditioner from a matrix.
mat | the matrix to precondition |
dofManager | the Degree-of-Freedom manager associated with matrix |
Reimplemented in geosx::PreconditionerBlockJacobi< LAI >, geosx::SeparateComponentPreconditioner< LAI >, and geosx::PreconditionerJacobi< LAI >.
Definition at line 65 of file PreconditionerBase.hpp.
|
inlinevirtual |
Check whether the preconditioner is available in matrix (explicit) form.
Reimplemented in geosx::PreconditionerBlockJacobi< LAI >.
Definition at line 129 of file PreconditionerBase.hpp.
|
inline |
Access the matrix the preconditioner was computed from.
Definition at line 119 of file PreconditionerBase.hpp.
|
inlineoverridevirtual |
Get the number of global columns.
Implements geosx::LinearOperator< LAI::ParallelVector >.
Reimplemented in geosx::PreconditionerJacobi< LAI >.
Definition at line 101 of file PreconditionerBase.hpp.
|
inlineoverridevirtual |
Get the number of global rows.
Implements geosx::LinearOperator< LAI::ParallelVector >.
Reimplemented in geosx::PreconditionerJacobi< LAI >.
Definition at line 92 of file PreconditionerBase.hpp.
|
inlinevirtual |
Access the preconditioner in matrix form (whenever available). It must be overridden by the specific preconditioner.
Reimplemented in geosx::PreconditionerBlockJacobi< LAI >.
Definition at line 139 of file PreconditionerBase.hpp.
|
inline |
Chech if preconditioner is ready to use.
Definition at line 110 of file PreconditionerBase.hpp.