Ejemplo n.º 1
0
 public Game(Game other, AlgorithmType algorithmType)
     : this()
 {
     AlgorithmType = algorithmType;
     FromGame(other);
 }
Ejemplo n.º 2
0
 public Game(Tableau tableau, AlgorithmType algorithmType)
     : this()
 {
     AlgorithmType = algorithmType;
     FromTableau(tableau);
 }
Ejemplo n.º 3
0
 public Game(string s, AlgorithmType algorithmType)
     : this()
 {
     AlgorithmType = algorithmType;
     FromAsciiString(s);
 }