|
| using | identity_functor_type = AnalyticalIdentity<D,T,S> |
| |
| using | targetType = T |
| |
| using | sourceType = S |
| |
| AnalyticalF< D, T, S > & | operator- (AnalyticalF< D, T, S > &rhs) |
| |
| AnalyticalF< D, T, S > & | operator+ (AnalyticalF< D, T, S > &rhs) |
| |
| AnalyticalF< D, T, S > & | operator* (AnalyticalF< D, T, S > &rhs) |
| |
| AnalyticalF< D, T, S > & | operator/ (AnalyticalF< D, T, S > &rhs) |
| |
| virtual | ~GenericF ()=default |
| |
| int | getSourceDim () const |
| | read only access to member variable _m
|
| |
| int | getTargetDim () const |
| | read only access to member variable _n
|
| |
| std::string & | getName () |
| | read and write access to name
|
| |
| std::string const & | getName () const |
| | read only access to name
|
| |
| virtual bool | operator() (T output[], const S input[])=0 |
| | has to be implemented for 'every' derived class
|
| |
| bool | operator() (T output[]) |
| | wrapper that call the pure virtual operator() (T output[], const S input[]) from above
|
| |
| bool | operator() (T output[], S input0) |
| |
| bool | operator() (T output[], S input0, S input1) |
| |
| bool | operator() (T output[], S input0, S input1, S input2) |
| |
| bool | operator() (T output[], S input0, S input1, S input2, S input3) |
| |
| std::shared_ptr< GenericF< T, S > > | _ptrCalcC |
| | memory management, frees resouces (calcClass)
|
| |
| static constexpr unsigned | dim = D |
| |
template<unsigned D, typename T, typename S>
class olb::AnalyticalRandomBase< D, T, S >
AnalyticalRandomBase: virtual base class for all the random functionals.
Definition at line 137 of file analyticalF.h.