X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.cpp;h=75b6bd0caefd42ebf5f4c2c7bced970b88d66074;hb=080a4995a3977a0fe7071e62151dc4d716a13302;hp=b4e9b14c6c5073c540cb33fc5657c80991a96ba2;hpb=620cfbb6760911a9f2ce188cd7244d86a76953c2;p=stockfish diff --git a/src/search.cpp b/src/search.cpp index b4e9b14c..75b6bd0c 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1080,7 +1080,7 @@ namespace { { // Try to reduce non-pv search depth by one ply if move seems not problematic, // if the move fails high will be re-searched at full depth. - if ( depth >= 2*OnePly + if ( depth >= 3*OnePly && moveCount >= LMRPVMoves && !dangerous && !moveIsCapture @@ -1251,6 +1251,9 @@ namespace { if (value_is_mate(nullValue)) { + if (nullValue == value_mated_in(ply + 2)) + mateThreat = true; + /* Do not return unproven mates */ } else if (nullValue >= beta) @@ -1269,9 +1272,6 @@ 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