André L. Maravilha1, 2
1 Dept. of Informatics, Management and Design - Centro Fed. de Edu. Tecnológica de Minas Gerais (url)
2 Operations Research and Complex Systems Lab. - Universidade Federal de Minas Gerais (url)
Repository with source-code and computational experiments for predicting computational runtime for solving MIP problems.
To compile this project, you need CMake (version 3.13 or later), Gurobi (version 9.1), IBM CPLEX (version 20.10), FICO Xpress (version 8.11), and a compatible compiler installed on your computer. The code has not been tested on versions earlier than the ones specified.
Inside the root directory of the project, run the following commands:
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DGUROBI_DIR=<path to Gurobi> -DCPLEX_DIR=<path to CPLEX> -DXPRESS_DIR=<path to FICO Xpress> ..
make
for example:
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DGUROBI_DIR=/opt/gurobi911/linux64 -DCPLEX_DIR=/opt/ibm/ilog -DXPRESS_DIR=/opt/xpressmp ..
make