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

This commit is contained in:
Kamil Śliwak 2020-02-15 03:43:45 +01:00
parent 763bdb1d51
commit 0fa2aa62b2

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();