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
Right now we're just detecting block ends by seeing if there's a negative diff in pellet_ct values in the block_state file. However, this can fail if there are consecutive blocks with 0 pellets obtained.
Instead, we can either do:
look for 0's in the block_state file, and if there is a large enough gap between consecutive 0's, assume the block ended.
or
use the NaN values in PatchState that occur on block transition.
is probably preferred, since it uses the block_state info directly
The text was updated successfully, but these errors were encountered:
Right now we're just detecting block ends by seeing if there's a negative diff in pellet_ct values in the block_state file. However, this can fail if there are consecutive blocks with 0 pellets obtained.
Instead, we can either do:
or
use the NaN values in PatchState that occur on block transition.
is probably preferred, since it uses the block_state info directly
The text was updated successfully, but these errors were encountered: