]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Tweak the formula for NNUE complexity
[stockfish] / src / search.h
index 8bb518325869b58c864d48ca29db32f4dfbc233a..f264bcae84027972c52511f6e02fe5c67eb0c889 100644 (file)
@@ -31,9 +31,6 @@ class Position;
 
 namespace Search {
 
-/// Threshold used for countermoves based pruning
-constexpr int CounterMovePruneThreshold = 0;
-
 
 /// Stack struct keeps track of the information we need to remember from nodes
 /// shallower and deeper in the tree during the search. Each search thread has
@@ -47,7 +44,6 @@ struct Stack {
   Move excludedMove;
   Move killers[2];
   Value staticEval;
-  Depth depth;
   int statScore;
   int moveCount;
   bool inCheck;