Skip to content

Commit 031a844

Browse files
authored
Merge branch 'feature/137_remove_metasymbolexports' into feature/127_jt_remove_metasymbolexport
2 parents 94251e0 + 4378680 commit 031a844

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/DistributedFactorGraphs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ include("FileDFG/FileDFG.jl")
6161
include("MetaGraphsDFG/MetaGraphsDFG.jl")
6262

6363
include("SymbolDFG/SymbolDFG.jl")
64-
using .SymbolDFGs
64+
# @reexport using .SymbolDFGs
6565

6666
include("LightDFG/LightDFG.jl")
6767
@reexport using .LightDFGs

src/LightDFG/services/LightDFG.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ end
240240
Checks if the graph is fully connected, returns true if so.
241241
"""
242242
function isFullyConnected(dfg::LightDFG)::Bool
243-
return length(connected_components(dfg.g)) == 1
243+
return length(LightGraphs.connected_components(dfg.g)) == 1
244244
end
245245

246246
function _isready(dfg::LightDFG, label::Symbol, ready::Int)::Bool

src/SymbolDFG/SymbolDFG.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module SymbolDFGs
1+
# module SymbolDFGs
22

33
using LightGraphs
44
using SparseArrays
@@ -45,7 +45,7 @@ include("entities/SymbolDFG.jl")
4545
include("services/SymbolDFG.jl")
4646

4747
# Exports
48-
export SymbolDFG
48+
# export SymbolDFG
4949

5050

51-
end
51+
# end

src/SymbolDFG/services/SymbolDFG.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ end
264264
Checks if the graph is fully connected, returns true if so.
265265
"""
266266
function isFullyConnected(dfg::SymbolDFG)::Bool
267-
return length(connected_components(dfg.g)) == 1
267+
return length(LightGraphs.connected_components(dfg.g)) == 1
268268
end
269269

270270
#Alias

0 commit comments

Comments
 (0)