Mutation.py 217 B

1234567891011
  1. # module imports
  2. from ..Operator import Operator
  3. # main mutation class
  4. class Mutation():
  5. def __init__(self):
  6. self.kind = Operator.MUTATOR
  7. def apply(self, solution):
  8. raise NotImplementedError