elo: 6 depth

This commit is contained in:
Simon Gardling 2025-03-04 23:14:13 -05:00
parent 7c74f6b5da
commit 222afb29c1
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -25,7 +25,7 @@ pub fn run() {
children_eval_method: ChildrenEvalMethod::Average, children_eval_method: ChildrenEvalMethod::Average,
}; };
let configs = (4..=6) let configs = (6..=6)
.map(move |d| FutureMoveConfig { .map(move |d| FutureMoveConfig {
max_depth: d, max_depth: d,
..FMV_BASE ..FMV_BASE
@ -84,7 +84,7 @@ pub fn run() {
let mut arena = PlayerArena::new(vec); let mut arena = PlayerArena::new(vec);
arena.prop_arena(1); arena.prop_arena(5);
println!("{}", arena); println!("{}", arena);
} }