Added copies for external access of function decorators

This commit is contained in:
SimpleArt
2020-11-19 23:25:33 -05:00
parent 3d10adb2d9
commit 965ad352a6
4 changed files with 25 additions and 6 deletions

View File

@ -27,6 +27,13 @@ def ensure_sorted(selection_method):
class Parent_Selection:
def __check_selection_probability(selection_method):
return check_selection_probability(selection_method)
def __check_positive_fitness(selection_method):
return check_positive_fitness(selection_method)
def __ensure_sorted(selection_method):
return ensure_sorted(selection_method)
class Rank: