aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/cplex/ilp_solver
blob: 9a6ff055ab516825d222baa2b7b091f96d786d89 (plain)
1
2
3
4
5
6
7
#!/bin/sh
tmp=$2.tmp
rm -f $tmp
cplex -c "read $1" "optimize" "write $tmp sol"
grep '<variable name="' $tmp | sed -e 's@ *<variable name="@@' -e 's@" index=.* value="@ @' -e 's@"/>@@' > $2
touch $2