X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.cpp;h=252b4299239e5e039e3bb90a4ba04ed0cef5b49d;hb=2f7723fd44d5184c205d31ac1ac5199359afb0d3;hp=fb3084247761dca2a60a4155546620fc936eff81;hpb=bdb586ac2b9b5cbbb3e42a8af13035b008403b72;p=stockfish diff --git a/src/search.cpp b/src/search.cpp index fb308424..252b4299 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1249,14 +1249,7 @@ namespace { pos.undo_null_move(); - if (value_is_mate(nullValue)) - { - if (nullValue == value_mated_in(ply + 2)) - mateThreat = true; - - /* Do not return unproven mates */ - } - else if (nullValue >= beta) + if (nullValue >= beta) { if (depth < 6 * OnePly) return beta; @@ -1272,6 +1265,9 @@ namespace { // move which was reduced. If a connection is found, return a fail // low score (which will cause the reduced move to fail high in the // parent node, which will trigger a re-search with full depth). + if (nullValue == value_mated_in(ply + 2)) + mateThreat = true; + ss[ply].threatMove = ss[ply + 1].currentMove; if ( depth < ThreatDepth && ss[ply - 1].reduction