Skip to content

Commit ae986df

Browse files
authored
Increase LMR reduction for winning beta (#1087)
Matetrack: 1,000,000 nodes Main: Found 3668, Best 2098 Patch: Found 3696, Best 2102 Net (branch): Found +28, Best +4 STC Elo | 1.48 +- 1.98 (95%) SPRT | 8.0+0.08s Threads=1 Hash=16MB LLR | 3.09 (-2.25, 2.89) [-2.75, 0.25] Games | N: 29640 W: 7581 L: 7455 D: 14604 Penta | [130, 3186, 8024, 3388, 92] https://recklesschess.space/test/15321/ Bench: 2764394
1 parent 08f2cfa commit ae986df

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/search.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -850,6 +850,7 @@ fn search<NODE: NodeType>(
850850

851851
reduction += 464 * (is_valid(tt_score) && tt_score <= alpha) as i32;
852852
reduction += 326 * (is_valid(tt_score) && tt_depth < depth) as i32;
853+
reduction += 1024 * is_win(beta) as i32;
853854

854855
if is_quiet {
855856
reduction += 2171;

0 commit comments

Comments
 (0)