This commit is contained in:
2025-03-04 13:42:16 -05:00
parent 204ba85202
commit d82fff2e0a
2 changed files with 7 additions and 6 deletions

View File

@@ -1,3 +1,4 @@
use elo::run;
use game::Game;
use logic::{ChildrenEvalMethod, FutureMoveConfig};
use repr::Piece;
@@ -12,8 +13,8 @@ pub mod repr;
// TODO! make this agent configuration a config option via `clap-rs`
fn main() {
// run();
// return;
run();
return;
let player1 = complexagent::ComplexAgent::new(
Piece::Black,
FutureMoveConfig {
@@ -21,7 +22,7 @@ fn main() {
min_arena_depth: 14,
top_k_children: 2,
up_to_minus: 10,
max_arena_size: 50_000_000,
max_arena_size: 100_000_000,
do_not_prune: false,
print: true,
children_eval_method: ChildrenEvalMethod::Max,