-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmigration_operator.py
45 lines (34 loc) · 1.29 KB
/
migration_operator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from pygenalgo.engines.auxiliary import SubPopulation
from pygenalgo.operators.genetic_operator import GeneticOperator
class MigrationOperator(GeneticOperator):
"""
Description:
Provides the base class (interface) for a Migration Operator.
"""
def __init__(self, migration_probability: float):
"""
Construct a 'MigrationOperator' object with a given
probability value.
:param migration_probability: (float).
"""
# Call the super constructor with the provided probability value.
super().__init__(migration_probability)
# _end_def_
def migrate(self, islands: list[SubPopulation]):
"""
Abstract method that "reminds" the user that if they want to
create a Migration Class that inherits from here they should
implement a migrate method.
:param islands: list[SubPopulation].
:return: Nothing but raising an error.
"""
raise NotImplementedError(f"{self.__class__.__name__}: "
f"You should implement this method!")
# _end_def_
def __call__(self, *args, **kwargs):
"""
This is only a wrapper of the "migrate" method.
"""
return self.migrate(*args, **kwargs)
# _end_def_
# _end_class_