Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nonlinear2 committed Dec 8, 2024
2 parents 25da033 + cf10644 commit 03e1530
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1041,9 +1041,7 @@ Value Search::Worker::search(
{
if (bestValue <= futilityValue && !is_decisive(bestValue)
&& !is_win(futilityValue))
if (bestValue <= futilityValue && !is_decisive(bestValue)
&& !is_win(futilityValue))
bestValue = futilityValue;
bestValue = futilityValue;
continue;
}

Expand Down

0 comments on commit 03e1530

Please sign in to comment.