depth 15 -> 12

This commit is contained in:
2025-02-19 22:32:28 -05:00
parent ac61d9a127
commit 2d55809d9a

View File

@@ -8,7 +8,7 @@ pub struct ComplexAgent {
#[allow(dead_code)]
impl ComplexAgent {
pub const fn new(color: Piece) -> Self {
const MAX_DEPTH: usize = 15;
const MAX_DEPTH: usize = 12;
Self {
color,
future_moves: FutureMoves::new(color, MAX_DEPTH, 4),