X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=0ed6b191b8bbe7e16d5585a68b85662c0c363616;hp=9c3e17b6606bf257f3fa0b6de275bcfd3497599a;hb=b915fdc889e7e154e030189d277b5242433407b4;hpb=67d19447f45fbfb01a359530549b0fffeb11f61f diff --git a/src/search.cpp b/src/search.cpp index 9c3e17b6..0ed6b191 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -183,8 +183,6 @@ void Search::init() { for (int mc = 1; mc < 64; ++mc) { double r = log(d) * log(mc) / 2; - if (r < 0.80) - continue; Reductions[NonPV][imp][d][mc] = int(std::round(r)); Reductions[PV][imp][d][mc] = std::max(Reductions[NonPV][imp][d][mc] - 1, 0);