Files
EasyGA/src/run.py
2020-11-21 23:54:26 -05:00

12 lines
162 B
Python

import EasyGA
import matplotlib.pyplot as plt
# Create the genetic algorithm
ga = EasyGA.GA()
ga.evolve()
ga.graph.highest_value_chromosome()
ga.graph.show()