View on GitHub

The PBBS Benchmarks

New version of pbbs benchmarks

Maximal Independent Set (MIS)

Given a undirected graph return a maximal independent set for the graph. The input graph can be in any format (as long as it does not encode the MIS somehow). Also the code cannot reorder the graph for locality. The output needs to be a sequence of the vertices appearing in the MIS. It need not be in sorted order.

Default Input Distributions

The default input graphs are as follows:

Input and Output File Formats

The input is a graph in the in the adjacency graph file format. The output is a sequence of integers corresponding to the locations of all vertices in the MIS (0 based). The output needs to be in the sequence format.