]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Add comments to uncommented parts of code
[stockfish] / src / thread.h
index 042bc2e9231588d5db2bd1fc4b5a097658df6399..c05fa941a12b7f4f304c051167297f464956a2f6 100644 (file)
@@ -54,7 +54,6 @@ public:
   void idle_loop();
   void start_searching();
   void wait_for_search_finished();
-  int best_move_count(Move move) const;
 
   Pawns::Table pawnsTable;
   Material::Table materialTable;
@@ -70,10 +69,12 @@ public:
   Depth rootDepth, completedDepth;
   CounterMoveHistory counterMoves;
   ButterflyHistory mainHistory;
+  ButterflyHistory staticHistory;
   LowPlyHistory lowPlyHistory;
   CapturePieceToHistory captureHistory;
   ContinuationHistory continuationHistory[2][2];
   Score contempt;
+  int failedHighCnt;
 };