X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=997cfd3b6a32c20ecbbb493dbb1e1cba8f87f536;hp=3a80e161ff42238a3eb77c396e9a0feb80159fcc;hb=745160572f9ffcc55317fcfedc47653eb95494aa;hpb=88de112b84a5285c2afb3e075a05c2ab8ad3fd33 diff --git a/src/search.cpp b/src/search.cpp index 3a80e161..997cfd3b 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -947,13 +947,11 @@ 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 ( depth < 7 * ONE_PLY // (~20 Elo) - && !extension - && !pos.see_ge(move, -Value(PawnValueEg * (depth / ONE_PLY)))) + else if ( !extension // (~20 Elo) + && !pos.see_ge(move, -PawnValueEg * (depth / ONE_PLY))) continue; }