Exemplo n.º 1
0
 public Parents(Chromosone father, Chromosone mother)
 {
     Father = father;
     Mother = mother;
 }
Exemplo n.º 2
0
 public Chromosone Append(Chromosone other)
 {
     var newBits = _bits.ToList();
     newBits.AddRange(other._bits.ToList());
     return new Chromosone(newBits);
 }