示例#1
0
 public Game(Game other, AlgorithmType algorithmType)
     : this()
 {
     AlgorithmType = algorithmType;
     FromGame(other);
 }
示例#2
0
 public Game(Tableau tableau, AlgorithmType algorithmType)
     : this()
 {
     AlgorithmType = algorithmType;
     FromTableau(tableau);
 }
示例#3
0
 public Game(string s, AlgorithmType algorithmType)
     : this()
 {
     AlgorithmType = algorithmType;
     FromAsciiString(s);
 }