[yul-phaser] AlgorithmRunner: Print total time when showing only the top chromosome

This commit is contained in:
Kamil Śliwak
2020-03-25 10:21:18 +01:00
parent 58e3fca3de
commit 10e8d3616c
2 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ protected:
string topChromosomePattern(size_t roundNumber, Individual const& individual) const
{
ostringstream output;
output << roundNumber << "\\|" << individualPattern(individual);
output << roundNumber << R"(\|[0-9.]+\|)" << individualPattern(individual);
return output.str();
}