arena size fixes

This commit is contained in:
2025-02-27 15:20:54 -05:00
parent 12a6881070
commit 956386fb66
3 changed files with 17 additions and 12 deletions

View File

@@ -13,11 +13,11 @@ pub struct ComplexAgent {
impl ComplexAgent {
pub const fn new(color: Piece) -> Self {
const CONFIG: FutureMoveConfig = FutureMoveConfig {
max_depth: 13,
max_depth: 20,
min_arena_depth_sub: 3,
top_k_children: 2,
up_to_minus: 3,
max_arena_size: 10_000_000,
max_arena_size: 50_000_000,
};
Self {
color,