@@ -52,17 +52,19 @@ DistributedFactorGraphs._copyIntoGraph!(cloudFg, localFg, union(getVariableIds(c
52
52
@test symdiff (getFactorIds (localFg), getFactorIds (cloudFg)) == []
53
53
@test isFullyConnected (localFg)
54
54
# Show it
55
- toDotFile (localFg, " /tmp/localfg.dot" )
55
+ toDotFile (localFg, " /tmp/localfg.dot" ) # @async run(`xdot /tmp/localfg.dot`)
56
56
57
57
# Alrighty! At this point, we should be able to solve locally...
58
58
# perform inference, and remember first runs are slower owing to Julia's just-in-time compiling
59
- batchSolve ! (localFg, drawpdf= true , show= true )
59
+ tree = wipeBuildNewTree ! (localFg, drawpdf= true , show= true )
60
60
# Erm, whut? Error = mcmcIterationIDs -- unaccounted variables
61
+ # batchSolve!(localFg, drawpdf=true, show=true)
61
62
62
63
# Trying new method.
63
- tree, smtasks = batchSolve! (localFg, treeinit= true , drawpdf= true , show= true ,
64
- returntasks= true , limititers= 50 ,
65
- upsolve= true , downsolve= true )
64
+ localFg. solverParams. drawtree = true
65
+ localFg. solverParams. showtree = true
66
+
67
+ tree, smt, hist = solveTree! (localFg)
66
68
67
69
# ### WIP and general debugging
68
70
0 commit comments