macop.algorithms.multi.MOSubProblem¶
MOEAD sub problem algorithm class
Classes
|
Specific MO sub problem used into MOEAD |
-
class
macop.algorithms.multi.MOSubProblem.
MOSubProblem
(index, weights, initalizer, evaluator, operators, policy, validator, maximise=True, parent=None)[source]¶ Specific MO sub problem used into MOEAD
-
index
¶ {int} – sub problem index
-
weights
¶ {[float]} – sub problems objectives weights
-
initalizer
¶ {function} – basic function strategy to initialize solution
-
evaluator
¶ {function} – basic function in order to obtained fitness (mono or multiple objectives)
-
operators
¶ {[Operator]} – list of operator to use when launching algorithm
-
policy
¶ {Policy} – Policy class implementation strategy to select operators
-
validator
¶ {function} – basic function to check if solution is valid or not under some constraints
-
maximise
¶ {bool} – specify kind of optimisation problem
-
currentSolution
¶ {Solution} – current solution managed for current evaluation
-
bestSolution
¶ {Solution} – best solution found so far during running algorithm
-
callbacks
¶ {[Callback]} – list of Callback class implementation to do some instructions every number of evaluations and load when initializing algorithm
-