]> git.sesse.net Git - stockfish/blobdiff - src/position.cpp
Do more reductions for late quiet moves in case of consecutive fail highs.
[stockfish] / src / position.cpp
index fe89b75317f5ae737dc41a455f4184703d224ce9..e6a760d2c7ac34fb1e3fc381ac7416ca8c25cc3a 100644 (file)
@@ -704,7 +704,6 @@ void Position::do_move(Move m, StateInfo& newSt, bool givesCheck) {
 
   // Used by NNUE
   st->accumulator.computed_accumulation = false;
-  st->accumulator.computed_score = false;
   auto& dp = st->dirtyPiece;
   dp.dirty_num = 1;
 
@@ -1000,7 +999,6 @@ void Position::do_null_move(StateInfo& newSt) {
   if (Eval::useNNUE)
   {
       std::memcpy(&newSt, st, sizeof(StateInfo));
-      st->accumulator.computed_score = false;
   }
   else
       std::memcpy(&newSt, st, offsetof(StateInfo, accumulator));