]> git.sesse.net Git - stockfish/blobdiff - src/search.h
History code rewrite (#1122)
[stockfish] / src / search.h
index 94b59d2bfac712be92d3559cf44e02912d55fd12..55a1bf6b3e1874754821e778bb85edffc5984673 100644 (file)
@@ -38,13 +38,13 @@ namespace Search {
 
 struct Stack {
   Move* pv;
-  CounterMoveStats* counterMoves;
+  PieceToHistory* history;
   int ply;
   Move currentMove;
   Move excludedMove;
   Move killers[2];
   Value staticEval;
-  int history;
+  int statScore;
   int moveCount;
 };