public bool CompatibleWith(Genome genome) => Representative.CompatibilityWith(genome) < CompatibilityThreshold;
public void AddGenome(Genome genome) => Members.Add(genome);
public Species(Genome representative) { Members = new List <Genome>(); Representative = representative; }