X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbook.cpp;h=1e4c9cc088aa277f998e70889cc285e8da3e20ab;hp=c6e1e436daa2f192e8c83afc7d03b2ca876bb524;hb=14dbeb22dd04f0954322a58c26833506fb4532a9;hpb=a88e762b4ea4a3696ecc0431237f54090a5aa1e2 diff --git a/src/book.cpp b/src/book.cpp index c6e1e436..1e4c9cc0 100644 --- a/src/book.cpp +++ b/src/book.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008 Marco Costalba + Copyright (C) 2008-2009 Marco Costalba Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -390,7 +390,7 @@ void Book::close() { /// Book::file_name() returns the file name of the currently active book, /// or the empty string if no book is open. -const string Book::file_name() const { +const string Book::file_name() { // Not const to compile on HP-UX 11.X return is_open() ? fileName : ""; } @@ -429,11 +429,11 @@ Move Book::get_move(const Position& pos) { if (!bookMove) return MOVE_NONE; - MoveStack moves[256]; - int n = generate_legal_moves(pos, moves); - for (int j = 0; j < n; j++) - if ((int(moves[j].move) & 07777) == bookMove) - return moves[j].move; + MoveStack mlist[256]; + MoveStack* last = generate_moves(pos, mlist); + for (MoveStack* cur = mlist; cur != last; cur++) + if ((int(cur->move) & 07777) == bookMove) + return cur->move; return MOVE_NONE; }