Skip to content

Instantly share code, notes, and snippets.

View gkobeaga's full-sized avatar

Gorka Kobeaga gkobeaga

View GitHub Profile
@gkobeaga
gkobeaga / concorde-with-glpk.sh
Created July 27, 2020 12:34
Build Concorde with GLPK
#Download and install GLPK
wget ftp://ftp.gnu.org/gnu/glpk/glpk-4.65.tar.gz
tar xvzf glpk-4.65.tar.gz
cd glpk-4.65
./configure
make
sudo make install
sudo ldconfig
cd ..