]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Don't update pvHit after IID
[stockfish] / src / search.cpp
index 99985fde53b4f74acd5d0ac562a2f7e2b452b045..cc8abc9ee814e48ccb1abca96d2e205921946ff9 100644 (file)
@@ -872,7 +872,6 @@ namespace {
         tte = TT.probe(posKey, ttHit);
         ttValue = ttHit ? value_from_tt(tte->value(), ss->ply) : VALUE_NONE;
         ttMove = ttHit ? tte->move() : MOVE_NONE;
-        pvHit = ttHit && tte->pv_hit();
     }
 
 moves_loop: // When in check, search starts from here