Skip to content

Commit

Permalink
Quiet buildSubraph with orphans (#858)
Browse files Browse the repository at this point in the history
  • Loading branch information
Affie authored Aug 24, 2020
1 parent d37248d commit 84cdb54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CliqStateMachine.jl
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ function buildCliqSubgraphForDown_StateMachine(csmc::CliqStateMachineContainer)
# build a local subgraph for inference operations
syms = getCliqAllVarIds(csmc.cliq)
infocsm(csmc, "2r, build subgraph syms=$(syms)")
csmc.cliqSubFg = buildSubgraph(csmc.dfg, syms, 1)
csmc.cliqSubFg = buildSubgraph(csmc.dfg, syms, 1; verbose=false)#FIXME #852 don't try and copy orphans to start with

opts = getSolverParams(csmc.dfg)
# store the cliqSubFg for later debugging
Expand Down
2 changes: 1 addition & 1 deletion src/TreeBasedInitialization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function condenseDownMsgsProductPrntFactors!(fgl::G,
end

# build required subgraph for parent/sibling down msgs
lsfg = buildSubgraph(fgl, lvarids, 1)
lsfg = buildSubgraph(fgl, lvarids, 1; verbose=false)#FIXME #852 don't try and copy orphans to start with

tempfcts = lsf(lsfg)
dellist = setdiff(awfcts, tempfcts)
Expand Down

0 comments on commit 84cdb54

Please sign in to comment.