[yul-phaser] main: Increase the number of chromosomes in the initial population to 20

This commit is contained in:
Kamil Śliwak 2020-02-05 19:25:15 +01:00
parent 3aaca31c31
commit 66d733fbac

View File

@ -71,7 +71,7 @@ CharStream loadSource(string const& _sourcePath)
void runAlgorithm(string const& _sourcePath)
{
constexpr size_t populationSize = 10;
constexpr size_t populationSize = 20;
constexpr size_t minChromosomeLength = 12;
constexpr size_t maxChromosomeLength = 30;