10#ifndef ROOT_Minuit2_GenericFunction 
   11#define ROOT_Minuit2_GenericFunction 
   50   virtual double operator()(
const std::vector<double> &
x) 
const = 0;
 
 
Class from which all the other classes, representing functions, inherit.
 
virtual double operator()(const std::vector< double > &x) const =0
Evaluates the function using the vector containing the input values.
 
virtual ~GenericFunction()
 
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...