Added basic database functionallity

This commit is contained in:
danielwilczak101
2020-11-05 15:38:54 -05:00
parent f6dc70e805
commit 7b2053d626
3 changed files with 35 additions and 20 deletions

View File

@ -4,6 +4,8 @@ import EasyGA
# Create the Genetic algorithm
ga = EasyGA.GA()
ga.population_size = 3
ga.generation_goal = 10
# Evolve the genetic algorithm
ga.evolve()