From 2d55809d9af8a55e674a694c013c697e59accb4a Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 19 Feb 2025 22:32:28 -0500 Subject: [PATCH] depth 15 -> 12 --- src/complexagent.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/complexagent.rs b/src/complexagent.rs index def2453..92c56a1 100644 --- a/src/complexagent.rs +++ b/src/complexagent.rs @@ -8,7 +8,7 @@ pub struct ComplexAgent { #[allow(dead_code)] impl ComplexAgent { pub const fn new(color: Piece) -> Self { - const MAX_DEPTH: usize = 15; + const MAX_DEPTH: usize = 12; Self { color, future_moves: FutureMoves::new(color, MAX_DEPTH, 4),