]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Rename SplitPoint parentSstack
[stockfish] / src / thread.h
index ddcea17dd0963c7f0fb70bd12f9c8c60f2a0f8ad..3cc526ce5c127e3be85299e20775d4a42b9870f6 100644 (file)
@@ -57,11 +57,10 @@ struct SplitPoint {
   int ply;
   int master;
   Move threatMove;
-  SearchStack sstack[MAX_THREADS][PLY_MAX_PLUS_2];
 
   // Const pointers to shared data
   MovePicker* mp;
-  SearchStack* parentSstack;
+  SearchStack* ss;
 
   // Shared data
   Lock lock;
@@ -69,7 +68,7 @@ struct SplitPoint {
   volatile Value alpha;
   volatile Value bestValue;
   volatile int moveCount;
-  volatile bool stopRequest;
+  volatile bool betaCutoff;
   volatile int slaves[MAX_THREADS];
 };