From aab353b82567eebf672d5a9564d81545dddc929c Mon Sep 17 00:00:00 2001 From: SimpleArt <71458112+SimpleArt@users.noreply.github.com> Date: Thu, 12 Nov 2020 17:20:52 -0500 Subject: [PATCH] Changed default percent converged and tolerance goal Should be less likely to converge early since it requires half of the whole population to converge. --- src/attributes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/attributes.py b/src/attributes.py index 89edd36..d5622bc 100644 --- a/src/attributes.py +++ b/src/attributes.py @@ -62,8 +62,8 @@ class Attributes: current_fitness = 0, generation_goal = 15, fitness_goal = None, - tolerance_goal = 1e-3, - percent_converged = 0.25, + tolerance_goal = 1e-2, + percent_converged = 0.50, chromosome_mutation_rate = 0.15, gene_mutation_rate = 0.05, initialization_impl = Initialization_Methods.random_initialization,