small tweaks

This commit is contained in:
2025-02-23 00:32:28 -05:00
parent ed101f8968
commit 563726ffd5
3 changed files with 29 additions and 14 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 = 14;
const NON_LAZY_DEPTH: usize = 8;
const MAX_DEPTH: usize = 9;
const NON_LAZY_DEPTH: usize = 9;
Self {
color,
future_moves: FutureMoves::new(color, MAX_DEPTH, NON_LAZY_DEPTH),