Skip to content

Commit

Permalink
Bench: 22982467
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Jan 4, 2025
1 parent d6269e3 commit b0d786a
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 @@ -467,7 +467,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
Depth lmrDepth = depth - 1 - R;

// Quiet late move pruning
if (moveCount > (improving ? 1 + depth * depth : depth * depth / 2))
if (moveCount > (improving ? 2 + depth * depth : 1 + depth * depth / 2))
mp.onlyNoisy = true;

// History pruning
Expand Down

0 comments on commit b0d786a

Please sign in to comment.