improve parent selection

This commit is contained in:
2025-02-26 22:11:27 -05:00
parent bbeb1b8b37
commit 4ec9f3cf21
4 changed files with 38 additions and 24 deletions

View File

@@ -14,10 +14,10 @@ impl ComplexAgent {
pub const fn new(color: Piece) -> Self {
const CONFIG: FutureMoveConfig = FutureMoveConfig {
max_depth: 10,
start_pruning_at_minus: 4,
min_arena_depth_sub: 3,
top_k_children: 2,
up_to_mod: 4,
max_arena_size: 100_000_000,
up_to_minus: 4,
max_arena_size: 10_000_000,
};
Self {
color,