initial elo rating stuff

This commit is contained in:
2025-03-02 22:08:12 -05:00
parent f6c2ef753d
commit 1dd1f3da25
8 changed files with 129 additions and 5 deletions

View File

@@ -23,8 +23,6 @@ impl Agent for ComplexAgent {
fn next_move(&mut self, board: &Board) -> Option<CoordPair> {
self.future_moves.update_from_board(board);
println!("# of moves stored: {}", self.future_moves.arena_len());
self.future_moves
.best_move()
.expect("FutureMoves has no move?")