add FutureMoves::check_arena

This commit is contained in:
2025-02-25 12:09:56 -05:00
parent bd00c29ad4
commit 5f7a5fdb00
2 changed files with 40 additions and 2 deletions

View File

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