]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Better check evasion move sorting
[stockfish] / src / search.h
index 8638a9276f0abf1dec43465caf758dcdab6f8b5f..e3ac5ab6a78edcb111be4df4103989aa98e5f263 100644 (file)
@@ -41,7 +41,7 @@ constexpr int CounterMovePruneThreshold = 0;
 
 struct Stack {
   Move* pv;
-  PieceToHistory* contHistory;
+  PieceToHistory* continuationHistory;
   int ply;
   Move currentMove;
   Move excludedMove;
@@ -69,6 +69,8 @@ struct RootMove {
   Value score = -VALUE_INFINITE;
   Value previousScore = -VALUE_INFINITE;
   int selDepth = 0;
+  int tbRank;
+  Value tbScore;
   std::vector<Move> pv;
 };