initial rewrite of lazy_children logic

This commit is contained in:
2025-02-25 11:23:14 -05:00
parent 9976368730
commit 0adb59dc7f
3 changed files with 21 additions and 27 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 = 9;
const NON_LAZY_DEPTH: usize = 9;
const MAX_DEPTH: usize = 18;
const NON_LAZY_DEPTH: usize = 5;
Self {
color,
future_moves: FutureMoves::new(color, MAX_DEPTH, NON_LAZY_DEPTH),