X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=8eaee87500dbf3c2fa5e78950e2df5c989a077c2;hp=048f2a7a053bcbb6cf29110498cd2f339622def7;hb=578b21bbeedc41b6e0d1b2df46887b1636a78e2b;hpb=dc3a5f791ebf235444864e633564561811fa1244 diff --git a/src/thread.cpp b/src/thread.cpp index 048f2a7a..8eaee875 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -321,10 +321,6 @@ void ThreadPool::read_uci_options() { assert(requested > 0); - // If zero (default) then set best minimum split depth automatically - if (!minimumSplitDepth) - minimumSplitDepth = requested < 8 ? 4 * ONE_PLY : 7 * ONE_PLY; - while (size() < requested) push_back(new_thread()); @@ -356,8 +352,6 @@ void ThreadPool::start_thinking(const Position& pos, const LimitsType& limits, StateStackPtr& states) { main()->join(); - SearchTime = now(); // As early as possible - Signals.stopOnPonderhit = Signals.firstRootMove = false; Signals.stop = Signals.failedLowAtRoot = false;