|
GEOS
|
Wraps a matrix A and represents A^T * A as a linear operator. More...
#include <NormalOperator.hpp>

Public Types | |
| using | Base = LinearOperator< typename MATRIX::Vector > |
| Alias for base type. | |
| using | Vector = typename Base::Vector |
| Alias for vector type. | |
| using | Matrix = MATRIX |
| Alias for matrix type. | |
Public Types inherited from geos::LinearOperator< MATRIX::Vector > | |
| using | Vector = MATRIX::Vector |
| Alias for template parameter. | |
Public Member Functions | |
| NormalOperator (Matrix const &mat) | |
| Constructor. More... | |
| void | apply (Vector const &src, Vector &dst) const override |
| Apply operator to a vector. More... | |
| globalIndex | numGlobalRows () const override |
| globalIndex | numGlobalCols () const override |
| localIndex | numLocalRows () const override |
| localIndex | numLocalCols () const override |
| MPI_Comm | comm () const override |
Public Member Functions inherited from geos::LinearOperator< MATRIX::Vector > | |
| LinearOperator ()=default | |
| Constructor. | |
| virtual | ~LinearOperator ()=default |
| Destructor. | |
| virtual void | apply (Vector const &src, Vector &dst) const=0 |
Apply operator to a vector, dst = this(src). More... | |
| virtual void | residual (Vector const &x, Vector const &b, Vector &r) const |
Compute residual r = b - this(x). More... | |
| virtual globalIndex | numGlobalNonzeros () const |
| virtual localIndex | numLocalNonzeros () const |
Wraps a matrix A and represents A^T * A as a linear operator.
| LAI | the linear algebra interface |
Definition at line 32 of file NormalOperator.hpp.
|
inlineexplicit |
Constructor.
| mat | the underlying matrix (must outlive this operator) |
Definition at line 49 of file NormalOperator.hpp.
|
inlineoverride |
Apply operator to a vector.
| src | input vector |
| dst | output vector |
src and dst cannot alias the same vector (some implementations may allow this). Definition at line 60 of file NormalOperator.hpp.
|
inlineoverridevirtual |
Implements geos::LinearOperator< MATRIX::Vector >.
Definition at line 101 of file NormalOperator.hpp.
|
inlineoverridevirtual |
Implements geos::LinearOperator< MATRIX::Vector >.
Definition at line 77 of file NormalOperator.hpp.
|
inlineoverridevirtual |
Implements geos::LinearOperator< MATRIX::Vector >.
Definition at line 69 of file NormalOperator.hpp.
|
inlineoverridevirtual |
Implements geos::LinearOperator< MATRIX::Vector >.
Definition at line 93 of file NormalOperator.hpp.
|
inlineoverridevirtual |
Implements geos::LinearOperator< MATRIX::Vector >.
Definition at line 85 of file NormalOperator.hpp.