Skip to content

Commit

Permalink
bench: 1244386
Browse files Browse the repository at this point in the history
bench: 1244386
  • Loading branch information
FauziAkram authored Dec 4, 2023
1 parent 08cdbca commit 5aa4edc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1207,8 +1207,8 @@ Value search(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth, boo
// Step 18. Full-depth search when LMR is skipped
else if (!PvNode || moveCount > 1)
{
// Increase reduction for cut nodes without ttMove (~1 Elo)
if (!ttMove && cutNode)
// Increase reduction for not ttMove (~1 Elo)
if (!ttMove)
r += 2;

// Note that if expected reduction is high, we reduce search depth by 1 here
Expand Down

0 comments on commit 5aa4edc

Please sign in to comment.