Skip to content

Commit eedcf6f

Browse files
committed
Format bench_mmap.jl
1 parent 29606cb commit eedcf6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

benchmark/bench_mmap.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ problem = read_uai_problem("Promedus_14")
1010
optimizer = TreeSA(ntrials = 1, niters = 2, βs = 1:0.1:40)
1111

1212
# Does not marginalize any var
13-
mmap1 = MMAPModel(problem; marginalizedvertices = Int[], optimizer)
13+
mmap1 = MMAPModel(problem; marginalizedvertices = Int[], optimizer)
1414
SUITE["mmap-1"] = @benchmarkable maximum_logp(mmap1)
1515

1616
# Marginalizes all vars
17-
mmap2 = MMAPModel(problem; marginalizedvertices = collect(1:(problem.nvars)), optimizer)
17+
mmap2 = MMAPModel(problem; marginalizedvertices = collect(1:(problem.nvars)), optimizer)
1818
SUITE["mmap-2"] = @benchmarkable maximum_logp(mmap2)
1919

2020
# Does not optimize over open vertices
21-
mmap3 = MMAPModel(problem; marginalizedvertices = [2, 4, 6], optimizer)
21+
mmap3 = MMAPModel(problem; marginalizedvertices = [2, 4, 6], optimizer)
2222
SUITE["mmap-3"] = @benchmarkable most_probable_config(mmap3)
2323

2424
end # module

0 commit comments

Comments
 (0)