Renamed parent selection subclasses to rank/fitness

This commit is contained in:
SimpleArt
2020-10-18 21:08:54 -04:00
parent d8e5296ef5
commit dd294db952
2 changed files with 6 additions and 6 deletions

View File

@ -53,7 +53,7 @@ class attributes:
self.make_gene = create_gene
# Methods for accomplishing Parent-Selection -> Crossover -> Survivor_Selection -> Mutation
self.parent_selection_impl = Parent_Selection.Tournament.with_replacement
self.parent_selection_impl = Parent_Selection.Rank.tournament
self.crossover_individual_impl = Crossover_Methods.Individual.single_point
self.crossover_population_impl = Crossover_Methods.Population.random_selection
self.survivor_selection_impl = Survivor_Selection.fill_in_best