]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Move some globals into main thread scope
[stockfish] / src / search.h
index d755f1c2e873cf907d4c13d7af6812065f9c7714..b1575a559f9e2569b4a45966966aeb3e3757770e 100644 (file)
@@ -39,10 +39,8 @@ struct Stack {
   Move* pv;
   int ply;
   Move currentMove;
-  Move ttMove;
   Move excludedMove;
   Move killers[2];
-  Depth reduction;
   Value staticEval;
   bool skipEarlyPruning;
   int moveCount;
@@ -93,7 +91,7 @@ struct LimitsType {
 /// typically in an async fashion e.g. to stop the search by the GUI.
 
 struct SignalsType {
-  std::atomic_bool stop, stopOnPonderhit, firstRootMove, failedLowAtRoot;
+  std::atomic_bool stop, stopOnPonderhit;
 };
 
 typedef std::unique_ptr<std::stack<StateInfo>> StateStackPtr;