feat: adds partial eval and tests

This commit is contained in:
Johann Dreo 2022-10-03 16:11:37 +02:00 committed by nojhan
commit 1d640b3251

View file

@ -118,7 +118,7 @@ class moBinaryPartition : public EO<FitT>
{
EO<FitT>::printOn(out); // Fitness.
// Trailing space already inserted.
out << selected.size() << " "; // Size.
out << selected.size() << " "; // Size.
std::copy(std::begin(selected), std::end(selected),
std::ostream_iterator<AtomType>(out, " ")); // Values.
out << " ";