X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=b30af89f1317da0307b38b1f66c10ff2e6bd32bb;hp=e7e33edef8f7acd4b1b41e9861e7a78e36158c03;hb=4af1ae82c6b017a3d0cac04ad1ad916a7e26a529;hpb=b37054c310876850f6ff65b19f6cdb5f941c57dc diff --git a/src/search.cpp b/src/search.cpp index e7e33ede..b30af89f 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -673,7 +673,7 @@ namespace { // At non-PV nodes we check for an early TT cutoff if ( !PvNode && ss->ttHit - && tte->depth() >= depth + && tte->depth() > depth && ttValue != VALUE_NONE // Possible in case of TT access race && (ttValue >= beta ? (tte->bound() & BOUND_LOWER) : (tte->bound() & BOUND_UPPER)))