This commit is contained in:
2025-02-20 23:14:07 -05:00
parent de0eafecfa
commit d5ed4eb81a
3 changed files with 7 additions and 5 deletions

View File

@@ -12,10 +12,11 @@ pub struct ComplexAgent {
#[allow(dead_code)]
impl ComplexAgent {
pub const fn new(color: Piece) -> Self {
const MAX_DEPTH: usize = 10;
const MAX_DEPTH: usize = 14;
const NON_LAZY_DEPTH: usize = 5;
Self {
color,
future_moves: FutureMoves::new(color, MAX_DEPTH, 8),
future_moves: FutureMoves::new(color, MAX_DEPTH, NON_LAZY_DEPTH),
}
}
}