X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=3d175483169c6fea6ad4d7e6810fdff3588b168f;hp=9b0a8bcf7965d42ba2e226d43a894b06afcb1b63;hb=304deb5e833baf47c147e93377f5c7ef582ab822;hpb=d84865eac3d7b694b6ad9b6eb95c7a3097b38b3d diff --git a/src/thread.h b/src/thread.h index 9b0a8bcf..3d175483 100644 --- a/src/thread.h +++ b/src/thread.h @@ -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]; }