Skip to content

Commit

Permalink
Bench: 3343485
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed May 2, 2024
1 parent 75bd168 commit e42a4c3
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 @@ -588,7 +588,7 @@ int Negamax(int alpha, int beta, int depth, int cutnode, ThreadData* thread, PV*
// IIR by Ed Schroder
// http://talkchess.com/forum3/viewtopic.php?f=7&t=74769&sid=64085e3396554f0fba414404445b3120
if (!(ss->skip || inCheck)) {
if ((isPV || cutnode) && (depth >= 4 || ttDepth + 4 < depth) && !hashMove)
if ((isPV || cutnode) && depth >= 4 && !hashMove)
depth--;
}

Expand Down

0 comments on commit e42a4c3

Please sign in to comment.