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

@@ -1,9 +1,11 @@
use elo::run;
use game::Game;
use logic::FutureMoveConfig;
use repr::Piece;
mod agent;
mod complexagent;
mod elo;
mod game;
mod game_inner;
mod logic;
@@ -11,6 +13,8 @@ pub mod repr;
// TODO! make this agent configuration a config option via `clap-rs`
fn main() {
run();
return;
let player1 = complexagent::ComplexAgent::new(
Piece::Black,
FutureMoveConfig {
@@ -20,6 +24,7 @@ fn main() {
up_to_minus: 10,
max_arena_size: 50_000_000,
do_not_prune: false,
print: true,
},
);
// let player2 = complexagent::ComplexAgent::new(