diff --git a/mo/src/problems/partition/moBinaryPartition.h b/mo/src/problems/partition/moBinaryPartition.h index 253c838c6..3b3f478e9 100644 --- a/mo/src/problems/partition/moBinaryPartition.h +++ b/mo/src/problems/partition/moBinaryPartition.h @@ -143,10 +143,12 @@ class moBinaryPartition : public EO virtual void printOn(std::ostream& out) const override { this->printSelectedOn(out); - out << " "; - out << rejected.size() << " "; // Size. - std::copy(std::begin(rejected), std::end(rejected), - std::ostream_iterator(out, " ")); // Values. + // Printing the rejected atom should not be necessary, + // as this is the complementary set of the selected. + // out << " "; + // out << rejected.size() << " "; // Size. + // std::copy(std::begin(rejected), std::end(rejected), + // std::ostream_iterator(out, " ")); // Values. } /** Deserialization of the `selected` and `rejected` atoms.