From c54f3a74937deb42519f273b9e629a3f8fc942f9 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Mon, 28 Apr 2025 01:17:28 -0400 Subject: [PATCH] elo test --- src/elo.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))),