Fixed variable name

This commit is contained in:
EREPPLab
2020-11-03 16:49:49 -05:00
parent 72a8975d03
commit f6dc70e805

View File

@ -60,7 +60,7 @@ class Attributes:
termination_impl = Termination_Methods.fitness_and_generation_based,
database = None,
database_name = 'database.db',
'sql_create_data_structure' = """ CREATE TABLE IF NOT EXISTS data (
sql_create_data_structure = """CREATE TABLE IF NOT EXISTS data (
id integer PRIMARY KEY,
generation integer NOT NULL,
fitness DOUBLE,