dune-functions 2.9.0
|
Class storing local functions using type erasure. More...
#include <dune/functions/common/localfunction.hh>
Public Member Functions | |
template<class F , disableCopyMove< LocalFunction, F > = 0> | |
LocalFunction (F &&f) | |
Construct from function. More... | |
LocalFunction ()=default | |
Range | operator() (const Domain &x) const |
Evaluation of wrapped function. More... | |
void | bind (const LocalContext &context) |
Bind function to a local context. More... | |
void | unbind () |
Unbind from local context. More... | |
bool | bound () const |
Return if the local function is bound to a grid element. More... | |
const LocalContext & | localContext () const |
Obtain local context this LocalFunction is bound to. More... | |
Friends | |
DerivativeInterface | derivative (const LocalFunction &t) |
Get derivative of wrapped function. More... | |
Class storing local functions using type erasure.
Range | Range type |
Domain | Domain type |
LocalContext | Type of local context where this function is defined on |
DerivativeTraits | Traits class to determine range of derivative. |
bufferSize | Size of stack buffer for small object optimization (defaults to 56) |
This models the Concept::LocalFunction<Range(Domain), LocalContext, DerivativeTraits> concept. Objects of this type are returned as local functions by the GridFunction wrapper. Notice that the DerivativeTraits type used here should normally be LocalDerivativeTraits<E,GDE> where GDE is the DerivativeTraits type of the corresponding global function. Small object optimization is used to store the given function. If its size exceed bufferSize
, memory will be allocated dynamically.
|
inline |
Construct from function.
F | Function type |
f | Function of type F |
Calling derivative(DifferentiableFunction) will result in an exception if the passed function does provide a free derivative() function found via ADL.
|
default |
|
inline |
Bind function to a local context.
You must bind a LocalFunction to a local context before you can evaluate it.
|
inline |
Return if the local function is bound to a grid element.
|
inline |
Obtain local context this LocalFunction is bound to.
|
inline |
Evaluation of wrapped function.
|
inline |
Unbind from local context.