I just went through the opening books I've downloaded with various engines in the past.
There are lots of files called book.bin and so I tend to rename them by appending a CRC32 of the file.
That helps me identify duplicate opening books.
I looked for things like this ...
- Code: Select all
Example found: entry 3 of 257471 in C:\Chess\OpeningBooks\Alf_book109_c5f38322.bin
Weird Move = b1e7
Example found: entry 1 of 368401 in C:\Users\protheric\Chess\OpeningBooks\v16_book\Book_7372bdbc.bin
pg_to_file = 1
pg_to_rank = 0
pg_from_file = 0
pg_from_rank = 4
pg_promotion_piece= 3
Weird Move = a5b1r
but when I eliminated opening books that were in a proprietary format (by assuming any real opening book would contain at least one move from StartPos) I was left with nothing of interest.
- Code: Select all
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\Alf_book109_c5f38322.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\bookc_e4d34958.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\book_4368d721.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\book_b8596ed9.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\glaurung_book_387bd364.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\Lime_binbook_d0df3e2b.bin. Not a polyglot opening book?
Book C:\Chess\OpeningBooks\performance_25150b06.bin is fine.
Book C:\Chess\OpeningBooks\scid_Elo2400_d0755235.bin is fine.
Book C:\Chess\OpeningBooks\scid_gm2600_96f04367.bin is fine.
Book C:\Chess\OpeningBooks\scid_varied_a3e0f52b.bin is fine.
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\v18_book\BOOK_c05aa8a6.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\v16_book\Book_7372bdbc.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\v14-v15_book\Book_a447d93f.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\GS_Alaric_11f_f378e15a.book. Not a polyglot opening book?
Book C:\Chess\OpeningBooks\GS_medium091230_dd8bcb2d.bin is fine.
Book C:\Chess\OpeningBooks\HannibalBookBig_53f28191.bin is fine.
Book C:\Chess\OpeningBooks\HannibalBookSmall_d82f5ec2.bin is fine.
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\ph-book2008_b506dcb2.bin. Not a polyglot opening book?
Book C:\Chess\OpeningBooks\Rybka_0a115dd7.bin is fine.
Book C:\Chess\OpeningBooks\TDDBII_f5e9c60b.bin is fine.
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\ThinkerX20_091230_e36cf79f.dat. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\ThinkerX40_091230_ae98205a.dat. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\wbqbook\WBQBOOK_3d35484c.bin. Not a polyglot opening book?
Book C:\Chess\OpeningBooks\Titans\Titans_ce6b7215.bin is fine.
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\TJbook\TJbook_252ebf61.bin. Not a polyglot opening book?
Book C:\Chess\OpeningBooks\T-X\T-X_2c720cad.bin is fine.
Book C:\Chess\OpeningBooks\book_small_cc4eab8b.bin is fine.
Book C:\Chess\OpeningBooks\twistedbook_fd814776.bin is fine.
Book C:\Chess\OpeningBooks\Book_f3a6cf29.bin is fine.
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\book109_c5f38322.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\gavibook-small_98107f60.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\mainbook_a0434119.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\random1_ef9cd417.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\random2_796dd5af.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\tourbook_b33a316a.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\ATTACK_c5e9df87.BIN. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\book_aa977329.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\books_2f94ef23.bin. Not a polyglot opening book?
No hashkey entry for StartPos found in C:\Chess\OpeningBooks\NotGlot\position_ab088cee.bin. Not a polyglot opening book?
So it seems whatever opening book problems I've got are not a general problem.
It occurred to me that I really ought to check book moves much better. At the moment my program just trusts the book and plays the moves stored in there.
But since a hashkey can correspond to more than one position, with different possible moves, I ought to check that
a retrieved move matches
one of the moves from my move generator and only play a move that the move generator has approved.
I know that a hash clash is a low probability event and not likely to happen in practice. If an opening book is loaded by an engine that is installed on many computers and if these run tournaments of rapid play then eventually there would be an erroneous book move played. That would be worse than a hash clash in the hash table, where the likely consequences are that a non-PV is correctly rejected for the wrong reasons.
I still haven't got to the bottom of what has been happening in my opening book with my old version of polyglot, but I haven't found a similar problem in any opening books off the internet.
(Edit: 29th May 2012. I added some more analysis of opening books I downloaded from the internet. Everything that seemed to be in polyglot format was okay. The newer ones are in the list below the line break.)
(Edit: 15th June 2012. Added more opening books.)