X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.cpp;h=c856980b4249fb8302b3990b5a02b14b0c743bea;hb=443787b0d1dceb6186e217ea2b2224e76806ea15;hp=21c36f5090bfadbbc073c0939702238468cf6601;hpb=3ef0c3c34a00e6b13d6c96d8c2f0d8d7a6cc25a6;p=stockfish diff --git a/src/search.cpp b/src/search.cpp index 21c36f50..c856980b 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -65,9 +65,9 @@ namespace { constexpr uint64_t ttHitAverageResolution = 1024; // Razor and futility margins - constexpr int RazorMargin = 661; + constexpr int RazorMargin = 594; Value futility_margin(Depth d, bool improving) { - return Value(198 * (d - improving)); + return Value(232 * (d - improving)); } // Reductions lookup table, initialized at startup