Example #1
0
    def move(self, state):
        print("{0}'s turn. ".format(self.name))

        m = Minimax(state)
        best_move, value = m.alphaBetaBestMove(self.difficulty, state, self.color)

        return best_move