increment i by 1 for summing values

This commit is contained in:
2025-02-22 12:35:09 -05:00
parent a2f302b4b0
commit 74b9c8dc96
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ pub struct ComplexAgent {
impl ComplexAgent {
pub const fn new(color: Piece) -> Self {
const MAX_DEPTH: usize = 14;
const NON_LAZY_DEPTH: usize = 5;
const NON_LAZY_DEPTH: usize = 8;
Self {
color,
future_moves: FutureMoves::new(color, MAX_DEPTH, NON_LAZY_DEPTH),