<< arc_graph 6_graphs_nets graph_2_mat >>

metanet >> metanet > 6_graphs_nets > girth

girth

circonférence d'un graphe orienté

Séquence d'appel

d = girth(g)

Paramètres

g

graphe (liste)

d

entier

Description

girth calcule la longueur (nombre d'arcs) du cycle le plus petit dans un graphe orienté non pondéré g.

Exemples

ta=[1 6 2 4 7 5 6 8 4 3 5 1];
he=[2 1 3 6 4 8 8 7 2 7 3 5];
g=make_graph('foo',1,8,ta,he);
g.nodes.graphics.x=[285  284  335  160  405  189  118  45];
g.nodes.graphics.y=[266  179   83  176  368  252  64  309];
show_graph(g);
d=girth(g)

<< arc_graph 6_graphs_nets graph_2_mat >>