X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=1be87a8107363f376a8da4404cf4761339d995af;hp=0f599fc29f88d9d37e38bea7d0301f62079d5cc0;hb=8db75dd9ec05410136898aa2f8c6dc720b755eb8;hpb=edf4c07d251f1d6c709d47969bfe1452194d9430 diff --git a/src/search.cpp b/src/search.cpp index 0f599fc2..1be87a81 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1497,7 +1497,7 @@ void MainThread::check_time() { return; // When using nodes, ensure checking rate is not lower than 0.1% of nodes - callsCnt = Limits.nodes ? std::min(4096, int(Limits.nodes / 1024)) : 4096; + callsCnt = Limits.nodes ? std::min(1024, int(Limits.nodes / 1024)) : 1024; static TimePoint lastInfoTime = now();