Skip to content
Snippets Groups Projects
Commit cb7f0f72 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[function.interface] (re)added another evaluate()

parent c1c87e68
No related branches found
No related tags found
No related merge requests found
......@@ -139,10 +139,14 @@ public:
}
/* @} */
/** \defgroup functional ´´These methods are provided by the interface itself.'' */
/** \defgroup provided ´´These methods are provided by the interface itself, but may not be implemented optimal.'' */
/* @{ */
// // first of all, import all the nonparametric evaluate()s
// using ComponentType::evaluate;
virtual RangeType evaluate(const DomainType& _x) const
{
RangeType ret;
evaluate(_x, ret);
return ret;
}
// virtual RangeType evaluate(const DomainType& x, const ParamType& mu) const
// {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment