Skip to content

Commit

Permalink
Bench: 27788674
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Dec 28, 2024
1 parent d878a2c commit 70f1411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.c
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
// Reduce more in cut nodes
r += 2 * cutnode;

r -= MIN(2, evalCorrection / 128);
r -= MIN(2, evalCorrection / 256);

// Depth after reductions, avoiding going straight to quiescence as well as extending
Depth lmrDepth = CLAMP(newDepth - r, 1, newDepth);
Expand Down

0 comments on commit 70f1411

Please sign in to comment.