]> git.sesse.net Git - stockfish/blobdiff - src/book.h
Retire move.h
[stockfish] / src / book.h
index 0690d32b5e015d02a9cdd5e97211acf1b6af2744..f84d93899a8d69ee80a1babb914ce3dbe79092ad 100644 (file)
 #include <fstream>
 #include <string>
 
-#include "move.h"
 #include "position.h"
 #include "rkiss.h"
 
 
-// A Polyglot book is a series of "entries" of 16 bytes. All integers are
-// stored highest byte first (regardless of size). The entries are ordered
-// according to key. Lowest key first.
+/// A Polyglot book is a series of "entries" of 16 bytes. All integers are
+/// stored highest byte first (regardless of size). The entries are ordered
+/// according to key. Lowest key first.
 struct BookEntry {
   uint64_t key;
   uint16_t move;