Skip to content

Commit

Permalink
bench: 1294909
Browse files Browse the repository at this point in the history
bench: 1294909
  • Loading branch information
FauziAkram authored Dec 29, 2024
1 parent 8a2ab8c commit e02c1d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ void Search::Worker::iterative_deepening() {
// When failing high/low give some update before a re-search. To avoid
// excessive output that could hang GUIs like Fritz 19, only start
// at nodes > 10M (rather than depth N, which can be reached quickly)
if (mainThread && multiPV == 1 && (bestValue <= alpha || bestValue >= beta)
if (mainThread && multiPV == 1 && (bestValue > alpha && bestValue < beta)
&& nodes > 10000000)
main_manager()->pv(*this, threads, tt, rootDepth);

Expand Down

0 comments on commit e02c1d7

Please sign in to comment.