]> git.sesse.net Git - stockfish/blobdiff - src/book.h
Small touches to book.cpp
[stockfish] / src / book.h
index 38804f9acf572b3518d105955d96539f04726c6e..0690d32b5e015d02a9cdd5e97211acf1b6af2744 100644 (file)
@@ -44,7 +44,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:
@@ -53,10 +53,10 @@ private:
   BookEntry read_entry(int idx);
   int first_entry(uint64_t key);
 
+  RKISS RKiss;
   std::ifstream bookFile;
   std::string bookName;
   int bookSize;
-  RKISS RKiss;
 };
 
 #endif // !defined(BOOK_H_INCLUDED)