]> git.sesse.net Git - stockfish/blobdiff - src/tt.cpp
Extract only exact scores to get the PV
[stockfish] / src / tt.cpp
index b7d47e7498951320a861dd60c66877a0a3ce710e..f3af6432a090149ca3905839abd879b0bf33f9a7 100644 (file)
@@ -197,9 +197,11 @@ void TranspositionTable::extract_pv(const Position& pos, Move bestMove, Move pv[
   pv[ply] = bestMove;
   p.do_move(pv[ply++], st);
 
-  // Try to add moves from TT while possible
+  // Extract moves from TT when possible. We try hard to always
+  // get a ponder move, that's the reason of ply < 2 conditions.
   while (   (tte = retrieve(p.get_key())) != NULL
          && tte->move() != MOVE_NONE
+         && (tte->type() == VALUE_TYPE_EXACT || ply < 2)
          && move_is_legal(p, tte->move())
          && (!p.is_draw() || ply < 2)
          && ply < PLY_MAX)