From 1d640b32510a806a44d195129da449546153456f Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Mon, 3 Oct 2022 16:11:37 +0200 Subject: [PATCH] feat: adds partial eval and tests --- mo/src/problems/partition/moBinaryPartition.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mo/src/problems/partition/moBinaryPartition.h b/mo/src/problems/partition/moBinaryPartition.h index 7fd53bce0..e74d0ea64 100644 --- a/mo/src/problems/partition/moBinaryPartition.h +++ b/mo/src/problems/partition/moBinaryPartition.h @@ -118,7 +118,7 @@ class moBinaryPartition : public EO { EO::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(out, " ")); // Values. out << " ";