From 70be50a7f2c2dee2e3d07370d4fa2481d7d2cd7a Mon Sep 17 00:00:00 2001 From: danielwilczak101 <44122838+danielwilczak101@users.noreply.github.com> Date: Mon, 21 Sep 2020 13:37:54 -0400 Subject: [PATCH] Full rewrite to update functionality --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 44b23b3..528682c 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ import EasyGA def user_gene_function(): return random.randint(1, 100) -# Standard user size requirements +# Standard user size requirements: Population_size = 10 Chromosome_length = 10 @@ -32,7 +32,7 @@ Chromosome_length = 10 ga = EasyGA.GA(Population_size, Chromosome_length,user_gene_function) ga.initialize() -# Looking at the first chromosome in the population +# Looking at the first chromosome in the population: ga.population.chromosomes[0].print_chromosome() ```