reduce default number of iters since deduplication is in effect
This commit is contained in:
parent
0fb79906be
commit
73467f4627
|
@ -1,2 +1,2 @@
|
||||||
game.goal = 18
|
game.goal = 18
|
||||||
bot.iters = 500_000
|
bot.iters = 100_000
|
||||||
|
|
|
@ -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,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue