]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Remove coordination between searching threads
[stockfish] / src / search.h
index 5e51c18e043398fe44e5cee7e3125a39114e1b9d..811b2e2a9460ef0437322fde8d76ce8731303eb5 100644 (file)
@@ -25,6 +25,8 @@
 #include "movepick.h"
 #include "types.h"
 
+namespace Stockfish {
+
 class Position;
 
 namespace Search {
@@ -47,7 +49,6 @@ struct Stack {
   Value staticEval;
   int statScore;
   int moveCount;
-  int distanceFromPv;
   bool inCheck;
   bool ttPv;
   bool ttHit;
@@ -107,4 +108,6 @@ void clear();
 
 } // namespace Search
 
+} // namespace Stockfish
+
 #endif // #ifndef SEARCH_H_INCLUDED