place weighting

This commit is contained in:
2025-02-20 19:14:31 -05:00
parent e1d83825b7
commit d29095bc9d
8 changed files with 101 additions and 51 deletions

View File

@@ -15,7 +15,7 @@ impl ComplexAgent {
const MAX_DEPTH: usize = 12;
Self {
color,
future_moves: FutureMoves::new(color, MAX_DEPTH, 4),
future_moves: FutureMoves::new(color, MAX_DEPTH, 6),
}
}
}