X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=ab34673463c57286d7ec4047a46755d6fc24701e;hp=60667c8764e32a01f904477e66ad614b57b73b57;hb=7bad50773a65c45b0b3f88eca7eddc6aa0f7f174;hpb=d3c3c4f8e7d2f7e388baf5279d83354fea74b07b diff --git a/src/search.cpp b/src/search.cpp index 60667c87..ab346734 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1228,7 +1228,7 @@ split_point_start: // At split points actual search starts from here // Prune moves with negative or equal SEE if ( futilityBase < beta && depth < DEPTH_ZERO - && pos.see(move) <= 0) + && pos.see_asymm(move, beta - futilityBase) <= 0) { bestValue = std::max(bestValue, futilityBase); continue;