-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
String parameter SelectSteps added to BP5 so that a reader only sees …
…the selected steps. The selection can contain multiple range selections in the form of start:end:step form, as a space-separated list. Unlimited selections can be defined using 'n' or 'N' for the end part of the range. Steps start from 0. For example: "0:n:3 2:n:3 1:n:3" is a valid selection spec for getting all steps. Memory requirement is std::vector<bool>(M) where M is the largest number in the spec (unlimited spec uses 16 bytes per unlimited range). There is NO protection from users specifying 64bit large numbers and run out of memory. Note that a reader always sees the available steps as step 0, 1, 2 and so on. This feature picks which steps in a file/stream will become visible.
- Loading branch information
Showing
10 changed files
with
668 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.