Exemplo n.º 1
0
 public bool CompatibleWith(Genome genome) =>
 Representative.CompatibilityWith(genome) < CompatibilityThreshold;
Exemplo n.º 2
0
 public void AddGenome(Genome genome) =>
 Members.Add(genome);
Exemplo n.º 3
0
 public Species(Genome representative)
 {
     Members        = new List <Genome>();
     Representative = representative;
 }