From 2cc7d93793bae3fed1cf33bc0b253c43c4fa71f5 Mon Sep 17 00:00:00 2001 From: danielwilczak101 <44122838+danielwilczak101@users.noreply.github.com> Date: Wed, 9 Dec 2020 01:49:31 -0500 Subject: [PATCH] Change adapt rate and turn it off by default --- src/attributes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/attributes.py b/src/attributes.py index a3d6985..73c3b5d 100644 --- a/src/attributes.py +++ b/src/attributes.py @@ -69,9 +69,9 @@ class Attributes: percent_converged = 0.50, chromosome_mutation_rate = 0.15, gene_mutation_rate = 0.05, - adapt_rate = 0.20, + adapt_rate = 0, adapt_probability_rate = 0.15, - adapt_population_flag = True, + adapt_population_flag = False, max_selection_probability = 0.99, min_selection_probability = 0.01, max_chromosome_mutation_rate = 0.20,