Created
December 1, 2018 13:47
-
-
Save manoelstilpen/f6b7f76e0a0b73f7215840fcdb09264d to your computer and use it in GitHub Desktop.
Compiling JSP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chmod +x configure.sh | |
./configure.sh # install program dependencies | |
mkdir build # create a directory which will hold compiled files | |
cd build # enters created directory | |
cmake .. # generate makefiles | |
make # compile program | |
./app -i ../instances/abz5_f13.txt -m vns -p # execution sample running vns algorithm for abz5 instance |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment