We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02260db commit e347e96Copy full SHA for e347e96
experiments/compare.jl
@@ -12,18 +12,18 @@ iterations = 10
12
problem = (
13
N = 10,
14
objective = :max,
15
- matrix_type = :uniform,
+ matrix_type = :known,
16
density = missing,
17
)
18
19
algorithms = [
20
- (name = "opt", method = qap_exact),
21
- (name = "lin", method = qap_linearization),
+ # (name = "opt", method = qap_exact),
+ # (name = "lin", method = qap_linearization),
22
(name = "lpr", method = qap_lprounding),
23
(name = "faq", method = faq),
24
(name = "rand", method = qap_random),
25
(name = "mms", method = qap_mms),
26
- # (name = "ns", method = qap_ns),
+ (name = "ns", method = qap_ns),
27
# (name = "star", method = qap_starpacking),
28
# (name = "dense", method = qap_densemapping),
29
]
0 commit comments