]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
WDL: rename WDLCursedLoss into WDLBlessedLoss
[stockfish] / src / search.cpp
index 75d388b945ea2573b211f6078ab7006c006ac4a3..3387091363212dc40b0d88c17e210cdd44d5db8b 100644 (file)
@@ -1074,13 +1074,6 @@ moves_loop: // When in check search starts from here
 
           if (value > alpha)
           {
-              // If there is an easy move for this position, clear it if unstable
-              if (    PvNode
-                  &&  thisThread == Threads.main()
-                  &&  EasyMove.get(pos.key())
-                  && (move != EasyMove.get(pos.key()) || moveCount > 1))
-                  EasyMove.clear();
-
               bestMove = move;
 
               if (PvNode && !rootNode) // Update pv even in fail-high case