X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=1a01601b8144f9d68a8cdd0b3c30356acc0d5d68;hp=a349fd6c7687c33002fbad2b5f6821a4785650b3;hb=ecc100d1bb59609eb6e4307d721ce3452bedb948;hpb=85559cc5972f93a2e7618d29b4b2cdcb79c55f98 diff --git a/src/search.cpp b/src/search.cpp index a349fd6c..1a01601b 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -234,9 +234,6 @@ namespace { // better than the second best move. const Value EasyMoveMargin = Value(0x200); - // Maximum number of moves to try before to split (strong YBWC) - const int MaximumSplitMove = 3; - // Last seconds noise filtering (LSN) const bool UseLSNFiltering = true; const int LSNTime = 4000; // In milliseconds @@ -1366,7 +1363,6 @@ namespace { if ( TM.active_threads() > 1 && bestValue < beta && depth >= MinimumSplitDepth - && (PvNode || moveCount > MaximumSplitMove * MinimumSplitDepth / depth) && Iteration <= 99 && TM.available_thread_exists(threadID) && !AbortSearch