]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Remove threat move stuff
[stockfish] / src / thread.h
index dc8418dcca5795a06f6b0a7f90244c1cca34b497..8169407e09b0766e7d4edb4d556727a6b5b2ea17 100644 (file)
@@ -67,7 +67,6 @@ struct SplitPoint {
   Depth depth;
   Value beta;
   int nodeType;
-  Move threatMove;
   bool cutNode;
 
   // Const pointers to shared data
@@ -118,7 +117,7 @@ struct Thread : public ThreadBase {
 
   template <bool Fake>
   void split(Position& pos, const Search::Stack* ss, Value alpha, Value beta, Value* bestValue, Move* bestMove,
-             Depth depth, Move threatMove, int moveCount, MovePicker* movePicker, int nodeType, bool cutNode);
+             Depth depth, int moveCount, MovePicker* movePicker, int nodeType, bool cutNode);
 
   SplitPoint splitPoints[MAX_SPLITPOINTS_PER_THREAD];
   Material::Table materialTable;