[yul-phaser] main: Lower gene mutation chance in GEWEP

This commit is contained in:
Kamil Śliwak
2020-03-09 13:21:48 +01:00
parent 763bdb1d51
commit 0fa2aa62b2
+2 -2
View File
@@ -143,8 +143,8 @@ void runAlgorithm(string const& _sourcePath, Algorithm _algorithm)
/* crossoverPoolSize = */ 0.25,
/* randomisationChance = */ 0.9,
/* deletionVsAdditionChance = */ 0.5,
/* percentGenesToRandomise = */ 0.1,
/* percentGenesToAddOrDelete = */ 0.1,
/* percentGenesToRandomise = */ 1.0 / maxChromosomeLength,
/* percentGenesToAddOrDelete = */ 1.0 / maxChromosomeLength,
}
).run();