]> git.sesse.net Git - stockfish/blobdiff - src/types.h
Restore old aspiration window to 16
[stockfish] / src / types.h
index 812a370059801cb73f88bf83986c704333551941..5a80402d94c2d1838cc5d84ad9d169695e28618c 100644 (file)
@@ -322,11 +322,11 @@ extern Value PieceValue[PHASE_NB][PIECE_NB];
 
 struct ExtMove {
   Move move;
-  int score;
+  Value value;
 };
 
 inline bool operator<(const ExtMove& f, const ExtMove& s) {
-  return f.score < s.score;
+  return f.value < s.value;
 }
 
 inline Color operator~(Color c) {