MADNESS
0.10.1
|
A generic operator: takes in one T
and produces another T
.
More...
#include <gmres.h>
Public Member Functions | |
virtual | ~Operator () |
T & | applyOp (const T &in, T &out) const |
Public access to the operator's action, returns out for convenience. More... | |
Protected Member Functions | |
virtual void | action (const T &in, T &out) const =0 |
The action of the operator. More... | |
A generic operator: takes in one T
and produces another T
.
Override the protected action() function to implement an Operator.
|
inlinevirtual |
|
protectedpure virtual |
The action of the operator.
[in] | in | The input vector |
[out] | out | The action of the operator on the input vector |
Implemented in ComplexVecLinearOp, ComplexVecIdentOp, RealVecLinearOp, RealVecIdentOp, ComplexFuncLinearOp, ComplexFuncIdentOp, RealFuncLinearOp, RealFuncIdentOp, and DirichletCondIntOp.
Referenced by madness::Operator< T >::applyOp().
|
inline |
Public access to the operator's action, returns out for convenience.
[in] | in | The input vector |
[out] | out | The action of the operator on the input vector |
References madness::Operator< T >::action().