Skip to content

Commit 4e0f394

Browse files
committed
add max and min out- and in-degree
1 parent 117dd3a commit 4e0f394

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/GraphProperties.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ let
5656
(:NumberOfConnectedComponents, "The *number of connected components* of an undirected graph."),
5757
(:MinimumDegree, "The *minimum degree* among the degrees of the vertices of an undirected graph."),
5858
(:MaximumDegree, "The *maximum degree* among the degrees of the vertices of an undirected graph."),
59+
(:MinimumIndegree, "The *minimum indegree* among the indegrees of the vertices of a directed graph."),
60+
(:MaximumIndegree, "The *maximum indegree* among the indegrees of the vertices of a directed graph."),
61+
(:MinimumOutdegree, "The *minimum outdegree* among the outdegrees of the vertices of a directed graph."),
62+
(:MaximumOutdegree, "The *maximum outdegree* among the outdegrees of the vertices of a directed graph."),
5963
(:Girth, "The *girth* of a undirected graph: the length of its shortest cycle."),
6064
(:VertexConnectivity, "The *vertex-connectivity* of an undirected graph. Also known as the *connectivity*."),
6165
(:EdgeConnectivity, "The *edge-connectivity* of an undirected graph."),

0 commit comments

Comments
 (0)