changes
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user