X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbook.cpp;h=ad0d406d343d6b3889132a28c728727394ed5924;hp=20861988b24c906b1ba04c5788b6dc9014a553ca;hb=a5ae7fe26030bdd73a95fde3ebe841abfe84ec5e;hpb=9fc602bae74b8e09bd45ace3b42a8ce84d56b23c diff --git a/src/book.cpp b/src/book.cpp index 20861988..ad0d406d 100644 --- a/src/book.cpp +++ b/src/book.cpp @@ -366,7 +366,7 @@ void Book::open(const string& fName) { // Get the book size in number of entries seekg(0, ios::end); - bookSize = tellg() / EntrySize; + bookSize = long(tellg()) / EntrySize; seekg(0, ios::beg); if (!good()) @@ -399,14 +399,15 @@ const string Book::file_name() { // Not const to compile on HP-UX 11.X /// Book::get_move() gets a book move for a given position. Returns /// MOVE_NONE if no book move is found. -Move Book::get_move(const Position& pos) { +Move Book::get_move(const Position& pos, bool findBestMove) { if (!is_open() || bookSize == 0) return MOVE_NONE; - int bookMove = 0, scoresSum = 0; - uint64_t key = book_key(pos); BookEntry entry; + int bookMove = MOVE_NONE; + int scoresSum = 0, bestScore = 0; + uint64_t key = book_key(pos); // Choose a book move among the possible moves for the given position for (int idx = find_key(key); idx < bookSize; idx++) @@ -419,6 +420,17 @@ Move Book::get_move(const Position& pos) { assert(score > 0); + // If findBestMove is true choose highest rated book move + if (findBestMove) + { + if (score > bestScore) + { + bestScore = score; + bookMove = entry.move; + } + continue; + } + // Choose book move according to its score. If a move has a very // high score it has more probability to be choosen then a one with // lower score. Note that first entry is always chosen.