X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbook.h;h=f84d93899a8d69ee80a1babb914ce3dbe79092ad;hp=07c00b4585ebea54e2337a8f8a4c22abe0b36416;hb=da6e53a436abcd4ac747c89d4496e4195109d908;hpb=d15217b953af28669dd3e5b46303b3ca882f353e diff --git a/src/book.h b/src/book.h index 07c00b45..f84d9389 100644 --- a/src/book.h +++ b/src/book.h @@ -23,14 +23,13 @@ #include #include -#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; @@ -44,7 +43,7 @@ public: ~Book(); void open(const std::string& fileName); void close(); - Move get_move(const Position& pos, bool findBestMove); + Move probe(const Position& pos, bool findBestMove); const std::string name() const { return bookName; } private: