Sopel97 / chess_pos_db

Database software for chess position statistics. Designed to provide high performance and handle billions of games.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Sopel97 opened this issue · comments

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.