-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
31 lines (24 loc) · 1.18 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# The options for the glpsol commands below were determined by
# a program that tried out a bunch of mip-related options to
# find the combination that resulted in the fastest runtime. The
# program that did the search only ran the solver once with each set
# of options, and made no attempt to figure out whether timing
# differences were statistically significant. Which is to say, there
# may be other options which result in faster runtimes. The point was
# only to find a set of options that were "good enough". With the
# below options, glpsol is able to find a solution in < 1s for all the
# t* targets on my ~7 year old laptop.
t1 :
glpsol -m graceful.mod -d [email protected] --noscale --first --bestb --nointopt --cover
t2 :
glpsol -m graceful.mod -d [email protected] --noscale --last --dfs --intopt --clique
t3 :
glpsol -m graceful.mod -d [email protected] --scale --drtom --bestp --nointopt --cover
t4 :
glpsol -m graceful.mod -d [email protected] --scale --first --bestp --nointopt --mir
t5 :
glpsol -m graceful.mod -d [email protected] --noscale --mostf --dfs --nointopt --cover
t6 :
glpsol -m graceful.mod -d [email protected] --noscale --last --dfs --nointopt --mir
t7 :
glpsol -m graceful.mod -d [email protected] --noscale --last --dfs --nointopt --gomory