We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f25b095 + 1c24c89 commit 8838526Copy full SHA for 8838526
src/LightDFG/services/LightDFG.jl
@@ -257,7 +257,7 @@ end
257
Checks if the graph is fully connected, returns true if so.
258
"""
259
function isFullyConnected(dfg::LightDFG)::Bool
260
- return length(connected_components(dfg.g)) == 1
+ return length(LightGraphs.connected_components(dfg.g)) == 1
261
end
262
263
function _isready(dfg::LightDFG, label::Symbol, ready::Int)::Bool
src/SymbolDFG/services/SymbolDFG.jl
@@ -264,7 +264,7 @@ end
264
265
266
function isFullyConnected(dfg::SymbolDFG)::Bool
267
268
269
270
#Alias
0 commit comments