]> git.sesse.net Git - stockfish/blobdiff - src/movegen.h
Use int instead of Value for history related stats.
[stockfish] / src / movegen.h
index f298fa07ba1094669e3b862517bc576848d0ca0d..8ae80118783c626dba484598282f5abb2653e99a 100644 (file)
@@ -38,7 +38,7 @@ enum GenType {
 
 struct ExtMove {
   Move move;
-  Value value;
+  int value;
 
   operator Move() const { return move; }
   void operator=(Move m) { move = m; }