View on GitHub

The PBBS Benchmarks

New version of pbbs benchmarks

Sequence File Format

The sequence file format is used for representing a sequence of values. The files are stored in ascii and need to be in the format:

sequence<type>
<v0>
<v1>
...
<v_(n-1)>

Each item after the sequence<type> declaration represents one element of the sequence and <type> specifies the type of each elements. The items are delimited by any consecutive sequence of delimiter characters: tab, space, line feed (ascii 0x0A), and carriage return (ascii 0x0D). The <type> can be one of the following:

The missing and extra carriage returns are meant to illustrate that there is no distinction between the delimiting characters.

Files can start and end with delimiters, which are ignored.