def run(): """ start the gtp connection and wait for commands. """ board = SimpleGoBoard(7) con = GtpConnection(PolicyPlayer(), board) con.start_connection()
def run(): """ start the gtp connection and wait for commands. """ board = SimpleGoBoard(7) con = GtpConnectionGo3(Go3Player(num_simulation), board) con.start_connection()
def run(sim_rule, move_filter): """ Start the gtp connection and wait for commands. """ board = SimpleGoBoard(7) con = GtpConnectionGo3(PolicyPlayer(sim_rule, move_filter), board) con.start_connection()
def run(sim, sim_rule, move_filter, in_tree_knowledge): """ Start the gtp connection and wait for commands. """ board = SimpleGoBoard(7) con = GtpConnectionGo3(Go5(num_sim, sim_rule, move_filter, in_tree_knowledge), board) con.start_connection()