Skip to content

Commit 7003f13

Browse files
committed
add more properties
1 parent 896102f commit 7003f13

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/GraphProperties.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ let
4848
(:FractionalChromaticNumber, "The *fractional chromatic number* of an undirected graph."),
4949
(:FractionalMatchingNumber, "The *fractional matching number* of an undirected graph."),
5050
(:Strength, "The *strength* of an undirected graph."),
51+
(:AssortativityCoefficient, "The *assortativity coefficient* of an undirected graph."),
52+
(:GlobalClusteringCoefficient, "The *global clustering coefficient* of an undirected graph."),
5153
]
5254
properties_integer = Tuple{Symbol, String}[
5355
(:NumberOfVertices, "The *number of vertices* of a graph."),
@@ -60,6 +62,9 @@ let
6062
(:MaximumIndegree, "The *maximum indegree* among the indegrees of the vertices of a directed graph."),
6163
(:MinimumOutdegree, "The *minimum outdegree* among the outdegrees of the vertices of a directed graph."),
6264
(:MaximumOutdegree, "The *maximum outdegree* among the outdegrees of the vertices of a directed graph."),
65+
(:Radius, "The *radius* of a connected undirected graph."),
66+
(:Diameter, "The *diameter* of a connected undirected graph."),
67+
(:Triameter, "The *triameter* of a connected undirected graph."),
6368
(:Girth, "The *girth* of a undirected graph: the length of its shortest cycle."),
6469
(:VertexConnectivity, "The *vertex-connectivity* of an undirected graph. Also known as the *connectivity*."),
6570
(:EdgeConnectivity, "The *edge-connectivity* of an undirected graph."),

0 commit comments

Comments
 (0)