]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
History code rewrite (#1122)
[stockfish] / src / thread.h
index 4d22d643c0360926f117709ee05c988bc1b6bb9d..7666a34fbaba39110c181de72eb1e584f435a462 100644 (file)
@@ -22,7 +22,6 @@
 #define THREAD_H_INCLUDED
 
 #include <atomic>
-#include <bitset>
 #include <condition_variable>
 #include <mutex>
 #include <thread>
@@ -69,9 +68,9 @@ public:
   Depth rootDepth;
   Depth completedDepth;
   std::atomic_bool resetCalls;
-  MoveStats counterMoves;
-  HistoryStats history;
-  CounterMoveHistoryStats counterMoveHistory;
+  CounterMoveStat counterMoves;
+  ButterflyHistory history;
+  CounterMoveHistoryStat counterMoveHistory;
 };