networks
girth
finds shortest cycle in an undirected graph
Calling Sequence
Parameters
Description
Examples
girth(G)
girth(G, shortcycle)
G
-
undirected multigraph
shortcycle
name used to return edges of the shortest cycle
Important: The networks package has been deprecated. Use the superseding command GraphTheory[Girth] instead.
The girth of a graph is the length of the shortest cycle. This routine returns the girth (or infinity if the graph G has no cycle).
If a name such as shortcycle is specified, then this name is assigned the set of edges forming that shortest cycle.
This routine is normally loaded via the command with(networks) but may also be referenced using the full name networks[girth](...).
with⁡networks:
G≔cycle⁡6:
girth⁡G,scyc
6
scyc
e1,e2,e3,e4,e5,e6
ends⁡scyc,G
1,2,2,3,3,4,4,5,5,6,1,6
delete⁡e1,G:
girth⁡G
∞
addedge⁡1,G:
girth⁡G,short
1
ends⁡short,G
See Also
GraphTheory
GraphTheory[Girth]
networks(deprecated)[cycle]
Download Help Document