]> git.sesse.net Git - stockfish/blobdiff - src/position.h
Rename psq_score in ReducedStateInfo
[stockfish] / src / position.h
index 6351f58003557274955c7d69b7fd254c7d084c44..55dc33feee917ea380f20110b4e5f27e0a527e3b 100644 (file)
@@ -60,6 +60,14 @@ struct StateInfo {
   StateInfo* previous;
 };
 
   StateInfo* previous;
 };
 
+struct ReducedStateInfo {
+  Key pawnKey, materialKey;
+  Value npMaterial[2];
+  int castleRights, rule50, pliesFromNull;
+  Score psqScore;
+  Square epSquare;
+};
+
 
 /// The position data structure. A position consists of the following data:
 ///
 
 /// The position data structure. A position consists of the following data:
 ///