You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If new moves are in the middle, we evenly split the timestamps between existing moves in the golden. But if the new moves are at the beginning or end of the game, we simply copy the beginning/end time. That's not ideal because it means that you'll have timestamps that appear to be at the same literal time instead of monotonically increasing.
Ideally we'd extend the timestamps based on how far they differ from their next moves in the new record. When we extend the start of the game and end, we'd need to modify all subsequent time stamps, and possibly also save a new Game.Modified timestamp to match the new final timestamp.
The text was updated successfully, but these errors were encountered:
Originally captured in #701
If new moves are in the middle, we evenly split the timestamps between existing moves in the golden. But if the new moves are at the beginning or end of the game, we simply copy the beginning/end time. That's not ideal because it means that you'll have timestamps that appear to be at the same literal time instead of monotonically increasing.
Ideally we'd extend the timestamps based on how far they differ from their next moves in the new record. When we extend the start of the game and end, we'd need to modify all subsequent time stamps, and possibly also save a new Game.Modified timestamp to match the new final timestamp.
The text was updated successfully, but these errors were encountered: