@@ -92,7 +92,7 @@ function mergeVariable!(dfg::GraphsDFG, variable::AbstractGraphVariable)
9292end
9393
9494function DFG. mergeVariables! (dfg:: GraphsDFG , variables)
95- cnts = map (v-> mergeVariable! (dfg, v), variables)
95+ cnts = map (v -> mergeVariable! (dfg, v), variables)
9696 return sum (cnts)
9797end
9898
@@ -113,7 +113,7 @@ function mergeFactor!(dfg::GraphsDFG, factor::AbstractGraphFactor)
113113end
114114
115115function DFG. mergeFactors! (dfg:: GraphsDFG , factors)
116- cnts = map (f-> mergeFactor! (dfg, f), factors)
116+ cnts = map (f -> mergeFactor! (dfg, f), factors)
117117 return sum (cnts)
118118end
119119
@@ -619,7 +619,10 @@ function DFG.getAgentBlobentry(fg::GraphsDFG, label::Symbol)
619619 return fg. agent. blobEntries[label]
620620end
621621
622- function DFG. getAgentBlobentries (fg:: GraphsDFG ; labelFilter:: Union{Nothing, Function} = nothing )
622+ function DFG. getAgentBlobentries (
623+ fg:: GraphsDFG ;
624+ labelFilter:: Union{Nothing, Function} = nothing ,
625+ )
623626 entries = collect (values (fg. agent. blobEntries))
624627 filterDFG! (entries, labelFilter, getLabel)
625628 return entries
0 commit comments