X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=702adc53dbdae3e81508f78e88c08cc12556630d;hp=4304298c73eb4783a7f45e4c20b488f3aa8f567e;hb=c56a7ee803bcb3c2c6072ee4ea196eb4eb9bdf00;hpb=35fa4fc71f7cf7b8f7ffc8a8c22f60048be99f86 diff --git a/src/search.cpp b/src/search.cpp index 4304298c..702adc53 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -651,11 +651,6 @@ namespace { // Check for some early stop condition if (!StopRequest && Limits.useTimeManagement()) { - // Stop search early if there is only a single legal move. Search to - // some depth anyway to get a proper score. - if (Rml.size() == 1 && depth >= 7) - StopRequest = true; - // Take in account some extra time if the best move has changed if (depth > 4 && depth < 50) TimeMgr.pv_instability(bestMoveChanges[depth], bestMoveChanges[depth - 1]);