Exemplo n.º 1
0
 public virtual void AddRange(GenomeCollection items)
 {
     foreach (Genome item in items)
     {
         this.List.Add(item);
     }
 }
Exemplo n.º 2
0
 public RandomSelector(GenomeCollection genomes)
 {
     this.genomes = genomes;
 }
Exemplo n.º 3
0
 public Enumerator(GenomeCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
Exemplo n.º 4
0
 public GenomeCollection(GenomeCollection items)
 {
     this.AddRange(items);
 }
Exemplo n.º 5
0
 public SequentialSelector(GenomeCollection genomes)
 {
     this.genomes = genomes;
 }
Exemplo n.º 6
0
 public WeightedSelector(GenomeCollection genomes)
 {
     this.genomes = genomes;
 }