7 lines
187 B
Python
7 lines
187 B
Python
from utils import StatefulBaseClass
|
|
|
|
|
|
class BaseMutation(StatefulBaseClass):
|
|
def __call__(self, state, randkey, genome, nodes, conns, new_node_key):
|
|
raise NotImplementedError
|