split_from and diag use iterators not vectors

This commit is contained in:
2025-02-10 15:38:16 -05:00
parent bd5cc2ea52
commit 13f5b29dac
5 changed files with 38 additions and 26 deletions

View File

@@ -248,7 +248,7 @@ pub struct ComplexAgent {
impl ComplexAgent {
pub fn new(color: Piece) -> Self {
const MAX_DEPTH: usize = 6;
const MAX_DEPTH: usize = 7;
Self {
color,
future_moves: FutureMoves::new(color, MAX_DEPTH),