]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Some renaming in split()
[stockfish] / src / thread.h
index ad17e8b270c788aa79863997db77ea65c4b432aa..d24b65dc7700a1a33b492c103b01a1a4527f0093 100644 (file)
@@ -63,15 +63,15 @@ struct SplitPoint {
   // Const data after split point has been setup
   const Position* pos;
   const Search::Stack* ss;
-  Thread* master;
+  Thread* masterThread;
   Depth depth;
   Value beta;
   int nodeType;
   Move threatMove;
 
   // Const pointers to shared data
-  MovePicker* mp;
-  SplitPoint* parent;
+  MovePicker* movePicker;
+  SplitPoint* parentSplitPoint;
 
   // Shared data
   Mutex mutex;