Example #1
0
 def move(self, board):
     gameTree = Tree(board, self.myColor, self.opponentColor, self.height)
     from_cell, to_cell = Minimax.calNextMove(gameTree, self.height)
     return from_cell, to_cell