X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=c6ee8c86b9c425ff7e55b618ce77070f9b618914;hp=8ba5b41af8be9cf182a02650dc9457d7fa515239;hb=7222f47350591190a97508f84131d80046f340ce;hpb=d3608c4e79a29110f4c4a369d7207c6dd8e01f34 diff --git a/src/search.cpp b/src/search.cpp index 8ba5b41a..c6ee8c86 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1251,7 +1251,6 @@ split_point_start: // At split points actual search starts from here // Prune moves with negative or equal SEE and also moves with positive // SEE where capturing piece loses a tempo and SEE < beta - futilityBase. if ( futilityBase < beta - && depth < DEPTH_ZERO && pos.see(move, beta - futilityBase) <= 0) { bestValue = std::max(bestValue, futilityBase);