From 66d733fbacd66ce91c448873d6fe0ab831fb5f0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Wed, 5 Feb 2020 19:25:15 +0100 Subject: [PATCH] [yul-phaser] main: Increase the number of chromosomes in the initial population to 20 --- tools/yulPhaser/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/yulPhaser/main.cpp b/tools/yulPhaser/main.cpp index 26a2ea005..321ebe088 100644 --- a/tools/yulPhaser/main.cpp +++ b/tools/yulPhaser/main.cpp @@ -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;