Added the termination features

This commit is contained in:
danielwilczak101
2020-09-30 00:05:39 -04:00
parent d531888d78
commit 625143da7d
10 changed files with 72 additions and 30 deletions

View File

@ -4,11 +4,10 @@ import random
ga = EasyGA.GA()
ga.chromosome_length = 3
ga.max_generations = 5
# If the user wants to use a domain
ga.gene_impl = [random.randrange,1,10]
# Run Everyhting
ga.evolve()