initial elo rating stuff
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user