Exemplo n.º 1
0
def main():
    match_results = {
            'W' : 0,
            'B' : 0
            }

    for i in range(100):
        game_supervisor = Supervisor(BotBase('B'), SampleBot('W'),
                            datetime.datetime.now())
        match_results[game_supervisor.play_game()] += 1

    print(match_results)