X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fsearch.cpp;h=19749b6413163e4e1966d513c0043db4d2090f50;hb=344616e917ccec2b53a2f06ad788122440efed35;hp=eb80d177e4c77903cfa06bb40b4fba13babdf396;hpb=e77f38c43102634139287b067a8079af36678bdb;p=stockfish diff --git a/src/search.cpp b/src/search.cpp index eb80d177..19749b64 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -461,11 +461,7 @@ void Thread::search() { if (!mainThread) continue; - if (Signals.stop) - sync_cout << "info nodes " << Threads.nodes_searched() - << " time " << Time.elapsed() << sync_endl; - - else if (PVIdx + 1 == multiPV || Time.elapsed() > 3000) + if (Signals.stop || PVIdx + 1 == multiPV || Time.elapsed() > 3000) sync_cout << UCI::pv(rootPos, rootDepth, alpha, beta) << sync_endl; }