Parallel and Sequential implementations of Dinic's, Push-Relabel and Genetic algorithms for solving the graph maxflow problem.
mkdir build && cd build
cmake .. && make
cd ..
In the directory where you created the build directory:
./maxflow
In the directory where you created the build directory: (i.e. sequential dinics)
./maxflow -seq dinics
(i.e. parallel push relabel)
./maxflow -par pushrelabel