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