Code for our paper "Separator based Data Reduction for the Maximum Cut Problem", which will be presented at Symposium on Experimental Algorithms (SEA) 2024.
All dependencies of this project are manged by git (via submodules).
- clone project
- run git submodule update --init --recursive
- now cmake building should work:
mkdir build && cd build
cmake .. -DGUROBI=ON -DGUROBI_DIR="/abs/path/to/gurobi/gurobi1001/linux64/"
make -j 10 # -j 10 makes make use 10 threadsFor larger graphs, set callstack size on linux to a large value via set ulimit:
ulimit -s 32000