Skip to content

Commit e347e96

Browse files
committed
update defaults in compare script
1 parent 02260db commit e347e96

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

experiments/compare.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ iterations = 10
1212
problem = (
1313
N = 10,
1414
objective = :max,
15-
matrix_type = :uniform,
15+
matrix_type = :known,
1616
density = missing,
1717
)
1818

1919
algorithms = [
20-
(name = "opt", method = qap_exact),
21-
(name = "lin", method = qap_linearization),
20+
# (name = "opt", method = qap_exact),
21+
# (name = "lin", method = qap_linearization),
2222
(name = "lpr", method = qap_lprounding),
2323
(name = "faq", method = faq),
2424
(name = "rand", method = qap_random),
2525
(name = "mms", method = qap_mms),
26-
# (name = "ns", method = qap_ns),
26+
(name = "ns", method = qap_ns),
2727
# (name = "star", method = qap_starpacking),
2828
# (name = "dense", method = qap_densemapping),
2929
]

0 commit comments

Comments
 (0)