let res = bot_game::run(
    &MCTSBot::new(1000),
    &MCTSBot::new(10000),
    10000,
    true,
    &mut thread_rng(),
);

BotGameResult {
    wins_a: 2401,
    wins_b: 7095,
    ties: 504,
    games: 10000,
    rate_a: 0.2401,
    rate_b: 0.7095,
    rate_tie: 0.0504,
}

