]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Rename Materials and Pawns hash stuff
[stockfish] / src / thread.h
index 9b0a8bcf7965d42ba2e226d43a894b06afcb1b63..3d175483169c6fea6ad4d7e6810fdff3588b168f 100644 (file)
@@ -85,8 +85,8 @@ public:
   void wait_for_stop_or_ponderhit();
 
   SplitPoint splitPoints[MAX_SPLITPOINTS_PER_THREAD];
-  MaterialInfoTable materialTable;
-  PawnInfoTable pawnTable;
+  MaterialTable materialTable;
+  PawnTable pawnTable;
   int threadID;
   int maxPly;
   Lock sleepLock;
@@ -111,7 +111,7 @@ class ThreadsManager {
      static storage duration are automatically set to zero before enter main()
   */
 public:
-  void init(); // No c'tor becuase Threads is static and we need stuff initialized
+  void init(); // No c'tor becuase Threads is static and we need engine initialized
   ~ThreadsManager();
 
   Thread& operator[](int id) { return *threads[id]; }