27 #ifndef STOPPINGCRITERION_STOPPINGCRITERIA_METHOD_H
28 #define STOPPINGCRITERION_STOPPINGCRITERIA_METHOD_H
32 #include "MonitorIn.hxx"
61 virtual bool test(std::vector<double>& values);
83 #endif // STOPPINGCRITERION_STOPPINGCRITERIA_METHOD_H
virtual std::string toString()=0
get Method name
virtual bool test(std::vector< double > &values)
return true if the vector of fouble values passed the test (see scope)
A Method represent how to make the boolean assessment with criteria data (a vector of double) ...
Definition: Method.h:40
ScopeType scope
scope of the method Any: test is true if all indivitual test are true in the values vector Average: t...
Definition: Method.h:80
virtual bool individualTest(double tested)=0
return true if the double passed the test
Method(mml::Method *m)
constructor
virtual ~Method()
destructor
std::string scopeTosString()
get a String of the scope
ScopeType
the scope of the method
Definition: Method.h:52