Example #1
0
def find_best_move(board):
    return searchai.find_best_move(board)
Example #2
0
def find_best_move(board, score):
    return ai.find_best_move(board, score)
Example #3
0
def find_best_move(board):
    return ai.find_best_move(board)
Example #4
0
def find_best_move(board):
    #return heuristicai.find_best_move_v3(board)
    return searchai.find_best_move(board)