Some how we lost the crossover folder

This commit is contained in:
Daniel Wilczak
2020-10-05 19:03:16 -04:00
parent 74ee67647c
commit 68af88df92
5 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,7 @@ from survivor_selection import Survivor_methods
# Manipulation Methods # Manipulation Methods
from parent_selection import Parent_methods from parent_selection import Parent_methods
from mutation import Mutation_methods from mutation import Mutation_methods
from crossover import Crossover_methods
class GA: class GA:
def __init__(self): def __init__(self):

1
src/crossover/README.md Normal file
View File

@ -0,0 +1 @@
# Mutation functions

View File

@ -0,0 +1,2 @@
# FROM (. means local) file_name IMPORT function_name
from .methods import Crossover_methods

3
src/crossover/methods.py Normal file
View File

@ -0,0 +1,3 @@
class Crossover_methods:
"""Mutation examples will go here """
pass

View File