X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=548ea9143d37c48f3aeec316744803a797c13aa1;hp=30f77bd9af80c10155af469acf9afce9ff86304e;hb=65c3bb8586eba11277f8297ef0f55c121772d82c;hpb=d42e6338ea2ac347e682475473dbc7b088b6985e diff --git a/src/search.cpp b/src/search.cpp index 30f77bd9..548ea914 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -69,7 +69,9 @@ namespace { // Razor and futility margins const int RazorMargin1 = 590; const int RazorMargin2 = 604; - Value futility_margin(Depth d) { return Value(150 * d / ONE_PLY); } + Value futility_margin(Depth d, bool improving) { + return Value((175 - 50 * improving) * d / ONE_PLY); + } // Futility and reductions lookup tables, initialized at startup int FutilityMoveCounts[2][16]; // [improving][depth] @@ -678,6 +680,10 @@ namespace { ss->staticEval, TT.generation()); } + improving = ss->staticEval >= (ss-2)->staticEval + /* || ss->staticEval == VALUE_NONE Already implicit in the previous condition */ + ||(ss-2)->staticEval == VALUE_NONE; + if (skipEarlyPruning || !pos.non_pawn_material(pos.side_to_move())) goto moves_loop; @@ -702,7 +708,7 @@ namespace { // Step 8. Futility pruning: child node (skipped when in check) if ( !rootNode && depth < 7 * ONE_PLY - && eval - futility_margin(depth) >= beta + && eval - futility_margin(depth, improving) >= beta && eval < VALUE_KNOWN_WIN) // Do not return unproven wins return eval;