You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/services/AbstractDFG.jl
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -848,7 +848,13 @@ function getSubgraph(dfg::G,
848
848
return addToDFG
849
849
end
850
850
851
-
851
+
"""
852
+
$(SIGNATURES)
853
+
Build a deep subgraph copy from the DFG given a list of variables and factors and an optional distance.
854
+
Note: Orphaned factors (where the subgraph does not contain all the related variables) are not returned.
855
+
Dev Notes
856
+
- Bulk vs node for node: a list of labels are compiled and the sugraph is copied in bulk.
857
+
"""
852
858
functionbuildSubgraph(::Type{G}, dfg::AbstractDFG, variableFactorLabels::Vector{Symbol}, distance::Int=0; solvable::Int=0, kwargs...) where G <:AbstractDFG
0 commit comments