reduce default number of iters since deduplication is in effect

This commit is contained in:
tali 2023-04-16 15:06:56 -04:00
parent 0fb79906be
commit 73467f4627
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
game.goal = 18 game.goal = 18
bot.iters = 500_000 bot.iters = 100_000

View File

@ -50,7 +50,7 @@ pub struct BotConfig {
impl BotConfig { impl BotConfig {
pub const DEFAULT: Self = Self { pub const DEFAULT: Self = Self {
iters: 100_000, iters: 50_000,
weights: Weights::DEFAULT, weights: Weights::DEFAULT,
}; };
} }