This commit is contained in:
2025-02-22 18:36:59 -05:00
parent 2305a8065f
commit 6d9be3dbe6
6 changed files with 25 additions and 19 deletions

View File

@@ -23,7 +23,7 @@ impl ComplexAgent {
impl Agent for ComplexAgent {
fn next_move(&mut self, board: &Board) -> Option<(usize, usize)> {
self.future_moves.update(board);
self.future_moves.update_from_board(board);
println!("# of moves stored: {}", self.future_moves.arena_len());