Move: bit madness

This commit is contained in:
2025-03-12 17:44:32 -04:00
parent 31e88e3313
commit afa80ac597
5 changed files with 125 additions and 30 deletions

View File

@@ -29,7 +29,7 @@ pub fn run() {
children_eval_method: ChildrenEvalMethod::AverageDivDepth,
};
let configs = [6]
let configs = [4, 6, 7]
.into_iter()
.map(move |d| FutureMoveConfig {
max_depth: d,
@@ -41,9 +41,9 @@ pub fn run() {
})
.filter(move |move_c| {
if move_c.do_prune {
move_c.max_depth >= 8
move_c.max_depth >= 7
} else {
move_c.max_depth < 8
move_c.max_depth < 7
}
})
// .flat_map(move |prev_c| {