|
MADNESS
version 0.9
|
A generic operator: takes in one T and produces another T.
More...
#include <gmres.h>
Public Member Functions | |
| T & | applyOp (const T &in, T &out) const |
| Public access to the operator's action, returns out for convenience. More... | |
| virtual | ~Operator () |
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 DirichletCondIntOp< NDIM >, and EFieldOperator.
Referenced by madness::Operator< vecfunc >::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 |
Referenced by madness::GMRES().
1.8.8