initial bit board storage

This commit is contained in:
2025-02-12 01:02:51 -05:00
parent 7992aca803
commit 59944e1e9e
4 changed files with 94 additions and 40 deletions

View File

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