count eval after calling the objective function

This commit is contained in:
Johann Dreo 2020-10-09 16:41:16 +02:00
commit a227e071f9

View file

@ -45,8 +45,9 @@ template<class EOT> class eoEvalFuncCounter : public eoEvalFunc<EOT>, public eoV
{
if (_eo.invalid())
{
value()++;
func(_eo);
value()++;
eo::log << eo::xdebug << "eoEvalFuncCounter: " << value() << std::endl;
}
}