X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=daed19135359406ddfde08e3c5f825b5e918803c;hp=c56839bae526bda09a628468a387efc7b60b5a14;hb=e7505324f618ba1d558ffa3c882ed208ad01bed1;hpb=3edb15d18397a687c952a3841b29215b7ee90575 diff --git a/src/search.cpp b/src/search.cpp index c56839ba..daed1913 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -145,7 +145,7 @@ void Search::init() { // Init futility move count array for (d = 0; d < 32; d++) - FutilityMoveCounts[d] = int(3.0 + 0.3 * pow(double(d), 1.8)); + FutilityMoveCounts[d] = int(3.001 + 0.3 * pow(double(d), 1.8)); } @@ -264,6 +264,10 @@ void Search::think() { finalize: + // When search is stopped this info is not printed + sync_cout << "info nodes " << RootPos.nodes_searched() + << " time " << Time::now() - SearchTime + 1 << sync_endl; + // When we reach max depth we arrive here even without Signals.stop is raised, // but if we are pondering or in infinite search, according to UCI protocol, // we shouldn't print the best move before the GUI sends a "stop" or "ponderhit"