add method

void add(
  1. Genome g
)

Implementation

void add(Genome g) {
  var species = findCompatibleSpecies(g);
  species.add(g);
}