Exemple #1
0
def run():
    """
    start the gtp connection and wait for commands.
    """
    board = SimpleGoBoard(7)
    con = GtpConnection(PolicyPlayer(), board)
    con.start_connection()
Exemple #2
0
def run():
    """
    start the gtp connection and wait for commands.
    """
    board = SimpleGoBoard(7)
    con = GtpConnectionGo3(Go3Player(num_simulation), board)
    con.start_connection()
Exemple #3
0
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()
Exemple #4
0
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()