[yul-phaser] AlgorithmRunner: Count rounds from 1

This commit is contained in:
Kamil Śliwak 2020-02-27 00:44:36 +01:00
parent 2110bf10cf
commit 25e81f6bd3

View File

@ -26,7 +26,7 @@ void AlgorithmRunner::run(GeneticAlgorithm& _algorithm)
{
m_population = _algorithm.runNextRound(m_population);
m_outputStream << "---------- ROUND " << round << " ----------" << endl;
m_outputStream << "---------- ROUND " << round + 1 << " ----------" << endl;
m_outputStream << m_population;
}
}