Skip to content

Commit

Permalink
Bench: 3107739
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed Mar 12, 2024
1 parent 3e110d5 commit b62195e
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 @@ -727,7 +727,7 @@ int Negamax(int alpha, int beta, int depth, int cutnode, ThreadData* thread, PV*
R += 1 + !IsCap(move);

if (ttDepth >= depth)
R--;
R -= (ttDepth - depth) / 2 + 1;

// prevent dropping into QS, extending, or reducing all extensions
R = Min(newDepth, Max(R, 1));
Expand Down

0 comments on commit b62195e

Please sign in to comment.