Skip to content

Commit

Permalink
Bench: 24850555
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Dec 26, 2024
1 parent 7608ca3 commit 2a61d86
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 @@ -532,7 +532,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth

// Reduced depth zero-window search
if ( depth > 2
&& moveCount > MAX(1, pvNode + !ttMove + root + !quiet)
&& moveCount > MAX(1, (pvNode && !ttMove) + root + !quiet)
&& thread->doPruning) {

// Base reduction
Expand Down

0 comments on commit 2a61d86

Please sign in to comment.