dune-common
2.2.1
|
Virtual base class template for function classes. More...
#include <dune/common/function.hh>
Public Types | |
typedef RawRangeType | RangeType |
Raw type of input variable with removed reference and constness. More... | |
typedef RawDomainType | DomainType |
Raw type of output variable with removed reference and constness. More... | |
Public Member Functions | |
virtual | ~VirtualFunction () |
virtual void | evaluate (const DomainType &x, RangeType &y) const =0 |
Function evaluation. More... | |
Virtual base class template for function classes.
DomainType | The type of the input variable is 'const DomainType &' |
RangeType | The type of the output variable is 'RangeType &' |
|
inherited |
Raw type of output variable with removed reference and constness.
|
inherited |
Raw type of input variable with removed reference and constness.
|
inlinevirtual |
|
pure virtual |
Function evaluation.
x | Argument for function evaluation. |
y | Result of function evaluation. |