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() ```