Skip to content
Snippets Groups Projects
Commit 60d4c63f authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Merge branch 'feature/returnOrderOfAnalyticDiscreteFunction' into 'master'

Add function to return the order of an AnalyticDiscreteFunction

See merge request !30
parents 55746f2f 106677b8
No related branches found
No related tags found
1 merge request!30Add function to return the order of an AnalyticDiscreteFunction
Pipeline #11971 passed
...@@ -265,6 +265,12 @@ public: ...@@ -265,6 +265,12 @@ public:
return f_; return f_;
} }
/// \brief obtain the order
const int order () const
{
return order_;
}
private: private:
Functor f_; Functor f_;
int order_; int order_;
......
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