From 7120aaa481afb912452da80e58096899ec2ff11b Mon Sep 17 00:00:00 2001 From: RKBK Date: Mon, 2 Nov 2015 14:40:27 +0100 Subject: [PATCH] Change incorrect description of mutation rate As far as I can understand from reading the Mutations.py code, a Mutation rate of 0.02 means a 2% mutation rate, not a 0.2% mutation rate. This also agrees with what is stated in the following example: http://blog.christianperone.com/2009/10/successful-pyevolve-multiprocessing-speedup-for-genetic-programming/ --- pyevolve/GSimpleGA.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyevolve/GSimpleGA.py b/pyevolve/GSimpleGA.py index afa73cd..44775d5 100644 --- a/pyevolve/GSimpleGA.py +++ b/pyevolve/GSimpleGA.py @@ -16,7 +16,7 @@ *Mutation Rate* - Default is 0.02, which represents 0.2% + Default is 0.02, which represents 2% *Crossover Rate*