def is_pass_move()

in pachi_py/pachi/tools/sgf2gtp.py [0:0]


def is_pass_move(coord, board_size):
    # the pass move is represented either by [] ( = empty coord )
    # OR by [tt] (for boards <= 19 only)
    return len(coord) == 0 or ( board_size <= 19 and coord == 'tt' )