File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ problem = read_uai_problem("Promedus_14")
1010optimizer = 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)
1414SUITE[" 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)
1818SUITE[" 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)
2222SUITE[" mmap-3" ] = @benchmarkable most_probable_config (mmap3)
2323
2424end # module
You can’t perform that action at this time.
0 commit comments