12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- """Abstract class which is used for applying strategy when selecting and applying operator
- """
- import logging
- # define policy to choose `operator` function at current iteration
- class Policy():
- """Abstract class which is used for applying strategy when selecting and applying operator
- Attributes:
- operators: {[Operator]} -- list of selected operators for the algorithm
- """
- def __init__(self, _operators):
- self.operators = _operators
- def select(self):
- """
- Select specific operator to solution and returns solution
- """
- raise NotImplementedError
- def apply(self, _solution):
- """
- Apply specific operator chosen to create new solution, computes its fitness and returns solution
-
- Args:
- _solution: {Solution} -- the solution to use for generating new solution
- Returns:
- {Solution} -- new generated solution
- """
- operator = self.select()
- logging.info("---- Applying %s on %s" %
- (type(operator).__name__, _solution))
- # apply operator on solution
- newSolution = operator.apply(_solution)
- # compute fitness of new solution
- newSolution.evaluate(self.algo.evaluator)
- logging.info("---- Obtaining %s" % (_solution))
- return newSolution
- def setAlgo(self, _algo):
- """Keep into policy reference of the whole algorithm
- The reason is to better manage the operator choices (use of rewards as example)
- Args:
- _algo: {Algorithm} -- the algorithm reference runned
- """
- self.algo = _algo
|