Skip to content

Commit 6ed501f

Browse files
committed
few missing imports
1 parent 4e84b0d commit 6ed501f

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/DistributedFactorGraphs.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,6 +529,7 @@ include("Common.jl")
529529

530530
function getSolvable end
531531
function getVariableType end
532+
function isInitialized end
532533
# In Memory Types
533534
include("GraphsDFG/GraphsDFG.jl")
534535
using .GraphsDFGs

src/GraphsDFG/GraphsDFG.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ using ...DistributedFactorGraphs:
2121
getVariableType,
2222
getAgentLabel,
2323
getGraphLabel,
24+
isInitialized,
2425
MetadataTypes
2526

2627
# import DFG functions to extend

src/GraphsDFG/services/GraphsDFG.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ function findShortestPathDijkstra(
503503
else
504504
varList
505505
end
506-
deepcopyGraph(typeof(dfg), dfg, varList, fctList)
506+
DFG.deepcopyGraph(typeof(dfg), dfg, varList, fctList)
507507
else
508508
# no filter can be used directly
509509
dfg

0 commit comments

Comments
 (0)