1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-07-30 13:37:05 +01:00

general cleaning/consolidation of the math interpreter

This commit is contained in:
2014-02-06 18:07:27 +00:00
parent 50d21ae904
commit ce6469cdd7
14 changed files with 1067 additions and 57 deletions

View File

@@ -34,7 +34,7 @@ Function::~Function(void)
{}
// access //////////////////////////////////////////////////////////////////////
unsigned int Function::getNArg(void)
unsigned int Function::getNArg(void) const
{
return nArg_;
}
@@ -77,5 +77,3 @@ double DoubleFunction::operator()(const double x0, ...)
return (*this)(buffer_);
}