elo for board eval

This commit is contained in:
Simon Gardling 2025-04-20 01:43:28 -04:00
parent 517e54dade
commit 83b56101d9
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -71,15 +71,11 @@ pub fn run() {
.to_vec() .to_vec()
}) })
.flat_map(move |prev_c| { .flat_map(move |prev_c| {
[ [ChildrenEvalMethod::MinMax, ChildrenEvalMethod::MinMaxFlat].map(move |method| {
ChildrenEvalMethod::Average, FutureMoveConfig {
ChildrenEvalMethod::AverageDivDepth, children_eval_method: method,
ChildrenEvalMethod::MinAvgDivDepth, ..prev_c
ChildrenEvalMethod::MinMax, }
]
.map(move |method| FutureMoveConfig {
children_eval_method: method,
..prev_c
}) })
}) })
.flat_map(move |prev_c| { .flat_map(move |prev_c| {