Skip to content

Commit 8838526

Browse files
committed
Merge branch 'master' into jt/develop_mastermerge
2 parents f25b095 + 1c24c89 commit 8838526

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/LightDFG/services/LightDFG.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ end
257257
Checks if the graph is fully connected, returns true if so.
258258
"""
259259
function isFullyConnected(dfg::LightDFG)::Bool
260-
return length(connected_components(dfg.g)) == 1
260+
return length(LightGraphs.connected_components(dfg.g)) == 1
261261
end
262262

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

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)