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.
1 parent de5e05a commit 5dc2fd6Copy full SHA for 5dc2fd6
docs/src/func_ref.md
@@ -49,6 +49,7 @@ getAdjacencyMatrix
49
### Validating Factor Graph Connectivity
50
```@docs
51
isFullyConnected
52
+hasOrphans
53
```
54
55
### Copying Subgraphs
src/services/GraphsDFG.jl
@@ -253,6 +253,10 @@ function isFullyConnected(dfg::GraphsDFG)::Bool
253
end
254
255
#Alias
256
+"""
257
+ $(SIGNATURES)
258
+Checks if the graph is not fully connected, returns true if it is not contiguous.
259
260
hasOrphans(dfg::GraphsDFG)::Bool = !isFullyConnected(dfg)
261
262
"""
0 commit comments