mutate method
Implementation
@override
void mutate(Genome g) {
var possibleDormantConnections = g.possibleDormantConnections.toList();
possibleDormantConnections.shuffle();
var chosenDormantConnection = possibleDormantConnections.first;
applyMutation(g, chosenDormantConnection);
}