g++ --version >= 4.7
This directory contains
- src/ directory - source code
- include/ directory - header files
- application directories
Makefile for each algorithm is present in its respective directory.
For example:
To run BFS makefile
cd bfs
make
To clear all the object files
make clean
Check the README inside each application folder
### Input file format ###
* The programs use graph in csr binary format
* Use the csr_gen utility in this [repo](https://github.com/kartiklakhotia/pcpm) to create binary csr files from edge list of a graph