8 lines
212 B
Python
8 lines
212 B
Python
from tensorneat.common import StatefulBaseClass, State
|
|
|
|
|
|
class BaseCrossover(StatefulBaseClass):
|
|
|
|
def __call__(self, state, genome, randkey, nodes1, nodes2, conns1, conns2):
|
|
raise NotImplementedError
|