]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Retire some conditions from ok_to_use_TT_pv
[stockfish] / src / search.cpp
index 791cbc6fb580901a567296d23a0eeed08f892969..3009799c3af5d96f9be3f588fb07b3531b7c7553 100644 (file)
@@ -1815,10 +1815,7 @@ split_point_start: // At split points actual search starts from here
     Value v = value_from_tt(tte->value(), ply);
 
      return   tte->depth() >= depth
-           && tte->type() == VALUE_TYPE_EXACT
-           && tte->move() != MOVE_NONE
-           && v < beta
-           && v > alpha;
+           && tte->type() == VALUE_TYPE_EXACT;
   }