From ce325d2bcdc8928beefd15807f77018abb90947d Mon Sep 17 00:00:00 2001 From: Neven Sajko Date: Wed, 8 Oct 2025 14:00:48 +0200 Subject: [PATCH] add some integer properties for connectivity of directed graphs --- src/GraphProperties.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/GraphProperties.jl b/src/GraphProperties.jl index e4e2530..da9c18e 100644 --- a/src/GraphProperties.jl +++ b/src/GraphProperties.jl @@ -59,6 +59,8 @@ let (:NumberOfEdges, "The *number of edges* of an undirected graph."), (:NumberOfArcs, "The *number of arcs* of a directed graph."), (:NumberOfConnectedComponents, "The *number of connected components* of an undirected graph."), + (:NumberOfWeaklyConnectedComponents, "The *number of weakly connected components* of a directed graph."), + (:NumberOfStronglyConnectedComponents, "The *number of strongly connected components* of a directed graph."), (:MinimumDegree, "The *minimum degree* among the degrees of the vertices of an undirected graph."), (:MaximumDegree, "The *maximum degree* among the degrees of the vertices of an undirected graph."), (:MinimumIndegree, "The *minimum indegree* among the indegrees of the vertices of a directed graph."),