Skip to content

Commit

Permalink
Bench: 27558865
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Jan 31, 2025
1 parent 693b322 commit 3bdbdd9
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 @@ -471,7 +471,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
mp.onlyNoisy = true;

// History pruning
if (lmrDepth < 3 && ss->histScore < -1024 * depth)
if (quiet && lmrDepth < 3 && ss->histScore < -1024 * depth)
continue;

// SEE pruning
Expand Down

0 comments on commit 3bdbdd9

Please sign in to comment.