X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=2d8a675b4a76ad1eb18bdefc13659814330b9217;hb=3b14b17664b30933e55d0fb1c8248ddab8b49110;hp=488feeb50053541b45c86bb02db7d151d22934a3;hpb=4e5d834e8e25c1120269fe3d0f20220ef2056cb8;p=stockfish diff --git a/src/thread.h b/src/thread.h index 488feeb5..2d8a675b 100644 --- a/src/thread.h +++ b/src/thread.h @@ -22,14 +22,13 @@ #include -#include "evaluate.h" #include "material.h" #include "movepick.h" #include "pawns.h" #include "position.h" #include "search.h" -const int MAX_THREADS = 32; +const int MAX_THREADS = 64; // Because SplitPoint::slavesMask is a uint64_t const int MAX_SPLITPOINTS_PER_THREAD = 8; struct Mutex { @@ -109,9 +108,9 @@ public: void wait_for_stop_or_ponderhit(); SplitPoint splitPoints[MAX_SPLITPOINTS_PER_THREAD]; - Eval::Table evalTable; - MaterialTable materialTable; - PawnTable pawnTable; + Material::Table materialTable; + Endgames endgames; + Pawns::Table pawnsTable; size_t idx; int maxPly; Mutex mutex;