Revert "Move: bit madness"

This reverts commit afa80ac597.

Only made a 3% memory decrease, Most memory is used in the children Vec
This commit is contained in:
2025-03-13 09:33:56 -04:00
parent afa80ac597
commit ed5ad738e3
5 changed files with 30 additions and 125 deletions

View File

@@ -29,7 +29,7 @@ pub fn run() {
children_eval_method: ChildrenEvalMethod::AverageDivDepth,
};
let configs = [4, 6, 7]
let configs = [6]
.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 >= 7
move_c.max_depth >= 8
} else {
move_c.max_depth < 7
move_c.max_depth < 8
}
})
// .flat_map(move |prev_c| {