]> git.sesse.net Git - stockfish/blobdiff - src/book.h
Rename value in bestValue in id_loop()
[stockfish] / src / book.h
index 8299b0315eaccfd40972eea436fe7fb855819b56..0690d32b5e015d02a9cdd5e97211acf1b6af2744 100644 (file)
@@ -44,19 +44,19 @@ 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:
-  template<typename T> void get_number(T& n);
+  template<typename T> Book& operator>>(T& n);
 
   BookEntry read_entry(int idx);
-  int find_entry(uint64_t key);
+  int first_entry(uint64_t key);
 
+  RKISS RKiss;
   std::ifstream bookFile;
   std::string bookName;
   int bookSize;
-  RKISS RKiss;
 };
 
 #endif // !defined(BOOK_H_INCLUDED)