Skip to content

Commit

Permalink
Change best bot to MCTS (UCT), 100 rollouts, greedy rollout
Browse files Browse the repository at this point in the history
```
[SUMMARY]
[challenge1]: 0 Sampling wins, 6 ties, 19
Uct100RolloutsSqrt2CGreedyNotDead wins --
Uct100RolloutsSqrt2CGreedyNotDead better than Sampling (p-value=0.000)
[challenge2]: 0 Sampling wins, 25 ties, 0
Uct100RolloutsSqrt2CGreedyNotDead wins -- not significant (p-value=1.000)
[challenge3]: 0 Sampling wins, 21 ties, 4
Uct100RolloutsSqrt2CGreedyNotDead wins -- not significant (p-value=0.125)
[challenge4]: 0 Sampling wins, 21 ties, 4
Uct100RolloutsSqrt2CGreedyNotDead wins -- not significant (p-value=0.125)
[challenge5]: 0 Sampling wins, 12 ties, 13
Uct100RolloutsSqrt2CGreedyNotDead wins --
Uct100RolloutsSqrt2CGreedyNotDead better than Sampling (p-value=0.000)
[challenge6]: 0 Sampling wins, 2 ties, 23
Uct100RolloutsSqrt2CGreedyNotDead wins --
Uct100RolloutsSqrt2CGreedyNotDead better than Sampling (p-value=0.000)
Sampling: 0 wins, ties: 87, Uct100RolloutsSqrt2CGreedyNotDead: 63 wins
-- Uct100RolloutsSqrt2CGreedyNotDead better than Sampling (p-value=0.000)
```
  • Loading branch information
JesseEmond committed Oct 18, 2024
1 parent 5f852ea commit 3b2ac8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/src/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ pub struct Bot<'a> {

impl Bot<'_> {
pub fn new_best(state: State, seed: u64) -> Self {
Self::new(state, seed, BotName::Sampling)
Self::new(state, seed, BotName::Uct100RolloutsSqrt2CGreedyNotDead)
}

pub fn new(state: State, seed: u64, name: BotName) -> Self {
Expand Down

0 comments on commit 3b2ac8b

Please sign in to comment.