Merge official-stockfish/master
authorFabian Fichter <ianfab@users.noreply.github.com>
Sat, 17 Jul 2021 19:31:06 +0000 (21:31 +0200)
committerFabian Fichter <ianfab@users.noreply.github.com>
Sat, 17 Jul 2021 19:31:06 +0000 (21:31 +0200)
bench: 4838140

1  2 
README.md
src/nnue/nnue_feature_transformer.h
src/search.cpp

diff --cc README.md
Simple merge
Simple merge
diff --cc src/search.cpp
@@@ -1167,9 -1025,9 +1167,9 @@@ moves_loop: // When in check, search st
            else
            {
                // Continuation history based pruning (~20 Elo)
-               if (   lmrDepth < 4
+               if (   lmrDepth < 5
 -                  && (*contHist[0])[movedPiece][to_sq(move)] < CounterMovePruneThreshold
 -                  && (*contHist[1])[movedPiece][to_sq(move)] < CounterMovePruneThreshold)
 +                  && (*contHist[0])[history_slot(movedPiece)][to_sq(move)] < CounterMovePruneThreshold
 +                  && (*contHist[1])[history_slot(movedPiece)][to_sq(move)] < CounterMovePruneThreshold)
                    continue;
  
                // Futility pruning: parent node (~5 Elo)