Skip to content

Commit c50b0e8

Browse files
More FDS reductions (#613)
Elo | 2.76 +- 2.00 (95%) SPRT | 8.0+0.08s Threads=1 Hash=16MB LLR | 2.91 (-2.25, 2.89) [0.00, 3.00] Games | N: 29408 W: 7327 L: 7093 D: 14988 Penta | [43, 3435, 7529, 3639, 58] https://recklesschess.space/test/9573/ Bench: 3712564
1 parent 4f9b34a commit c50b0e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/search.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ fn search<NODE: NodeType>(
838838
reduction -= 3028;
839839
}
840840

841-
let reduced_depth = new_depth - (reduction >= 3072) as i32;
841+
let reduced_depth = new_depth - (reduction >= 3072) as i32 - (reduction >= 5454 && new_depth >= 3) as i32;
842842

843843
td.stack[ply].reduction = 1024 * ((initial_depth - 1) - new_depth);
844844
score = -search::<NonPV>(td, -alpha - 1, -alpha, reduced_depth, !cut_node, ply + 1);

0 commit comments

Comments
 (0)