Skip to content

Commit

Permalink
Bench: 20837415
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Nov 14, 2024
1 parent a3b41e3 commit 88b2783
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 @@ -489,7 +489,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
// Base reduction
int r = Reductions[quiet][MIN(31, depth)][MIN(31, moveCount)];
// Adjust reduction by move history
r -= 1024 * (ss->histScore / 9500);
r -= 1024 * ss->histScore / 9500;
// Reduce less in pv nodes
r -= 1024 * pvNode;
// Reduce less when improving
Expand Down

0 comments on commit 88b2783

Please sign in to comment.