public TicTacToeSolver(TicTacToe game) { this.game = game; Root = new Node(game.GetCopy()); Console.WriteLine("Buidling Tree"); Root.ProccessNextMoves(); Console.WriteLine("Processing Values"); Root.ProcessVals(); curr = Root; }
public Node(TicTacToe ttt) { this.ttt = ttt; height = 1; }