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