Structure change to make it easier for users to clone and use the repository.

This commit is contained in:
danielwilczak101
2021-01-26 21:20:38 -06:00
parent 92cea15a09
commit 2fc75aba07
43 changed files with 7 additions and 30 deletions

11
run.py Normal file
View File

@ -0,0 +1,11 @@
import EasyGA
import random
#Create the Genetic Algorithm
ga = EasyGA.GA()
ga.evolve()
#Print your default genetic algorithm
ga.print_generation()
ga.print_population()