Rename class Book to PolyglotBook

And move struct BookEntry out of the header where it is
not needed.

No functional change.
This commit is contained in:
Marco Costalba
2012-09-16 10:30:32 +02:00
parent 4b7dbb3922
commit 9ce7469846
3 changed files with 31 additions and 33 deletions

View File

@@ -224,7 +224,7 @@ size_t Search::perft(Position& pos, Depth depth) {
void Search::think() {
static Book book; // Defined static to initialize the PRNG only once
static PolyglotBook book; // Defined static to initialize the PRNG only once
Position& pos = RootPosition;
Chess960 = pos.is_chess960();