diff --git a/src/search.cpp b/src/search.cpp index 008a60ed..3cf50eb5 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1021,8 +1021,7 @@ moves_loop: // When in check, search starts from here continue; // Futility pruning: parent node (~5 Elo) - if ( lmrDepth < 7 - && !ss->inCheck + if ( !ss->inCheck && ss->staticEval + 174 + 157 * lmrDepth <= alpha && (*contHist[0])[movedPiece][to_sq(move)] + (*contHist[1])[movedPiece][to_sq(move)]