|
dune-functions 2.10
|
Wrap a list of callable objects as derivative sequence modelling Concept::DifferentiableFunction<Range(Domain), DerivativeTraits> More...
#include <dune/functions/common/differentiablefunctionfromcallables.hh>
Public Types | |
| using | Signature = Range(Domain) |
| Signature of function. | |
| using | RawSignature = typename SignatureTraits< Signature >::RawSignature |
| using | DerivativeSignature = typename DerivativeTraits< RawSignature >::Range(Domain) |
| Signature of derivative. | |
| using | Derivative = DifferentiableFunction< DerivativeSignature, DerivativeTraits > |
| Type of derivative. | |
Public Member Functions | |
| template<class FF , disableCopyMove< DifferentiableFunctionFromCallables, FF > = 0> | |
| DifferentiableFunctionFromCallables (FF &&f) | |
| Constructor copying the given function. | |
| Range | operator() (const Domain &x) const |
| Evaluate function. | |
Friends | |
| Derivative | derivative (const DifferentiableFunctionFromCallables &t) |
| Get derivative of DifferentiableFunctionFromCallables. | |
Wrap a list of callable objects as derivative sequence modelling Concept::DifferentiableFunction<Range(Domain), DerivativeTraits>
| Range | Range type of function |
| Domain | Domain type of function |
You can use this to implement a differentiable function including a variable number of derivatives using callable objects.
This models the Concept::DifferentiableFunction<Range(Domain), DerivativeTraits> concept.
Note that using makeDifferentiableFunction will be less verbose than creating this wrapper manually.
| using Dune::Functions::DifferentiableFunctionFromCallables< Range(Domain), DerivativeTraits, F >::Derivative = DifferentiableFunction<DerivativeSignature, DerivativeTraits> |
Type of derivative.
| using Dune::Functions::DifferentiableFunctionFromCallables< Range(Domain), DerivativeTraits, F >::DerivativeSignature = typename DerivativeTraits<RawSignature>::Range(Domain) |
Signature of derivative.
| using Dune::Functions::DifferentiableFunctionFromCallables< Range(Domain), DerivativeTraits, F >::RawSignature = typename SignatureTraits<Signature>::RawSignature |
| using Dune::Functions::DifferentiableFunctionFromCallables< Range(Domain), DerivativeTraits, F >::Signature = Range(Domain) |
Signature of function.
|
inline |
Constructor copying the given function.
|
inline |
Evaluate function.