Sopel97 / chess_pos_db

Database software for chess position statistics. Designed to provide high performance and handle billions of games.
MIT License
3 stars 3 forks source link

The actual number of plies is not being registered for games when the database is created in parallel mode. #14

Closed Sopel97 closed 4 years ago

Sopel97 commented 4 years ago

Requires either updating the entry in the game headers (so operator[] in ext::Vector requires some checks to see whether the accessed data is not written yet and can be modified in memory)

Or requires deferring putting the game header entry until after all moves are processed and then update all moves with the proper game index.