diff --git a/src/search.cpp b/src/search.cpp index c678cd53..fb5dfd00 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -947,8 +947,7 @@ moves_loop: // When in check, search starts from here continue; // Prune moves with negative SEE (~10 Elo) - if ( lmrDepth < 8 - && !pos.see_ge(move, Value(-35 * lmrDepth * lmrDepth))) + if (!pos.see_ge(move, Value(-29 * lmrDepth * lmrDepth))) continue; } else if ( !extension // (~20 Elo)