]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Update comment on why we call root search with ss+1
[stockfish] / src / thread.h
index 100620313fcebc7e7f5f6161fe15b600b0a9929e..038d8e39f68f68ed4941847eeee5b6f1d507ea31 100644 (file)
@@ -38,7 +38,7 @@ struct SplitPoint {
   const Position* pos;
   Depth depth;
   Value beta;
-  int pvNode;
+  int nodeType;
   int ply;
   int master;
   Move threatMove;
@@ -116,7 +116,7 @@ public:
 
   template <bool Fake>
   void split(Position& pos, SearchStack* ss, Value* alpha, const Value beta, Value* bestValue,
-             Depth depth, Move threatMove, int moveCount, MovePicker* mp, bool pvNode);
+             Depth depth, Move threatMove, int moveCount, MovePicker* mp, int nodeType);
 private:
   Thread threads[MAX_THREADS];
   Lock mpLock;