Skip to content

Commit

Permalink
Bench: 19885655
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Oct 24, 2023
1 parent cfdf4d6 commit bbf9100
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 @@ -501,7 +501,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
// Reduce more when opponent has few pieces
r += pos->nonPawnCount[opponent] < 2;
// Reduce more in cut nodes
r += cutnode;
r += 2 * cutnode;

// Depth after reductions, avoiding going straight to quiescence as well as extending
Depth lmrDepth = CLAMP(newDepth - r, 1, newDepth);
Expand Down

0 comments on commit bbf9100

Please sign in to comment.