A few minor corrections (and some comments) after Maarten big commit

This commit is contained in:
evomarc 2001-02-15 04:47:18 +00:00
commit bf0e84fc56
5 changed files with 15 additions and 11 deletions

View file

@ -55,14 +55,7 @@ public :
bool objectChanged = objectXOver(_eo1, _eo2); // as vector<double>
bool stdDevChanged = stdDevXOver(_eo1.stdevs, _eo2.stdevs);
/// Marc, I didn't change it, but if only the stdev has changed,
/// doesn't that mean that the fitness is stil valid. Maarten
if ( objectChanged || stdDevChanged )
{
return true;
}
return false;
return objectChanged;
}
private: