Skip to content

Commit 594aefa

Browse files
committed
more
1 parent 7003f13 commit 594aefa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/GraphProperties.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ let
5050
(:Strength, "The *strength* of an undirected graph."),
5151
(:AssortativityCoefficient, "The *assortativity coefficient* of an undirected graph."),
5252
(:GlobalClusteringCoefficient, "The *global clustering coefficient* of an undirected graph."),
53+
(:CheegerConstant, "The *Cheeger constant* of an undirected graph. Also known as the *Cheeger number* or as the *isoperimetric number*."),
54+
(:Circumference, "The *circumference* of an undirected graph."),
55+
(:Girth, "The *girth* of an undirected graph."),
5356
]
5457
properties_integer = Tuple{Symbol, String}[
5558
(:NumberOfVertices, "The *number of vertices* of a graph."),
@@ -65,7 +68,6 @@ let
6568
(:Radius, "The *radius* of a connected undirected graph."),
6669
(:Diameter, "The *diameter* of a connected undirected graph."),
6770
(:Triameter, "The *triameter* of a connected undirected graph."),
68-
(:Girth, "The *girth* of a undirected graph: the length of its shortest cycle."),
6971
(:VertexConnectivity, "The *vertex-connectivity* of an undirected graph. Also known as the *connectivity*."),
7072
(:EdgeConnectivity, "The *edge-connectivity* of an undirected graph."),
7173
(:CliqueNumber, "The *clique number* of an undirected graph."),
@@ -84,6 +86,8 @@ let
8486
(:HadwigerNumber, "The *Hadwiger number* of an undirected graph. Also known as the *contraction clique number* or as the *homomorphism degree*."),
8587
(:TwinWidth, "The *twin-width* of an undirected graph."),
8688
(:CliqueWidth, "The *clique-width* of an undirected graph."),
89+
(:TreeDepth, "The *tree-depth* of a connected undirected graph."),
90+
(:CycleRank, "The *cycle rank* of a directed graph."),
8791
(:Treewidth, "The *treewidth* of an undirected graph."),
8892
(:Pathwidth, "The *pathwidth* of an undirected graph. Also known as the *interval thickness* or as the *vertex separation number* or as the *node searching number*."),
8993
(:Boxicity, "The *boxicity* of an undirected graph."),

0 commit comments

Comments
 (0)