diff --git a/src/elo.rs b/src/elo.rs index 1ea378a..f54450d 100644 --- a/src/elo.rs +++ b/src/elo.rs @@ -29,7 +29,7 @@ pub fn run() { children_eval_method: Default::default(), }; - let configs = [6] + let configs = [4, 5, 6] .into_iter() .map(move |d| FutureMoveConfig { max_depth: d, @@ -120,7 +120,7 @@ pub fn run() { }) .collect(); - if false { + if true { vec.push(( "RandomAgent".to_string(), Box::new(move |piece| Box::new(RandomAgent::new(piece))),