@@ -54,16 +54,32 @@ label!
5454```
5555
5656## Auxiliary functions
57+
58+ ### Degrees
59+ ``` @docs
60+ degree(g::Graph, v::Int)
61+ indegree(g::Graph{Directed}, v::Int)
62+ outdegree(g::Graph{Directed}, v::Int)
63+ ```
64+
65+ ### Connectivity
66+ ``` @docs
67+ is_connected(g::Graph{Undirected})
68+ connected_components(g::Graph{Undirected})
69+ connectivity(g::Graph{Undirected})
70+ is_weakly_connected(g::Graph{Directed})
71+ is_strongly_connected(g::Graph{Directed})
72+ weakly_connected_components(g::Graph{Directed})
73+ diameter(g::Graph{T}) where {T <: Union{Directed, Undirected}}
74+ ```
75+
76+ ### Others
5777``` @docs
5878adjacency_matrix(g::Graph)
5979all_neighbors(g::Graph{T}, v::Int64) where {T <: Union{Directed, Undirected}}
6080automorphism_group_generators(g::Graph{T}) where {T <: Union{Directed, Undirected}}
61- connectivity(g::Graph{Undirected})
6281complete_graph(n::Int64)
6382complete_bipartite_graph(n::Int64, m::Int64)
64- degree(g::Graph, v::Int)
65- indegree(g::Graph{Directed}, v::Int)
66- outdegree(g::Graph{Directed}, v::Int)
6783vertices(g::Graph{T}) where {T <: Union{Directed, Undirected}}
6884edges(g::Graph{T}) where {T <: Union{Directed, Undirected}}
6985has_edge(g::Graph{T}, source::Int64, target::Int64) where {T <: Union{Directed, Undirected}}
0 commit comments