Skip to content

Commit

Permalink
Bench: 2892478
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed Dec 1, 2024
1 parent 8a6282e commit 691918a
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 @@ -616,7 +616,7 @@ int Negamax(int alpha, int beta, int depth, int cutnode, ThreadData* thread, PV*
int history = GetHistory(ss, thread, move);

int R = LMR[Min(depth, 63)][Min(legalMoves, 63)];
R -= history / 8192; // adjust reduction based on historical score
R -= history / 16384; // adjust reduction based on historical score
R += (IsCap(hashMove) || IsPromo(hashMove)); // increase reduction if hash move is noisy

if (bestScore > -TB_WIN_BOUND) {
Expand Down

0 comments on commit 691918a

Please sign in to comment.