From 9a60416e1d688a15a64d84b4f7f22e3987386ddb Mon Sep 17 00:00:00 2001 From: SimpleArt <71458112+SimpleArt@users.noreply.github.com> Date: Thu, 6 May 2021 18:38:36 -0400 Subject: [PATCH] Fixed typo --- EasyGA/attributes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EasyGA/attributes.py b/EasyGA/attributes.py index f711636..4d0258f 100644 --- a/EasyGA/attributes.py +++ b/EasyGA/attributes.py @@ -48,7 +48,7 @@ class Attributes: generation_goal: int = 100 fitness_goal: Optional[float] = None tolerance_goal: Optional[float] = None - percentage_converged: float = 0.5 + percent_converged: float = 0.5 chromosome_mutation_rate: float = 0.15 gene_mutation_rate: float = 0.05