<graph>
<graph> (graphe) encode un graphe, c'est-à-dire un ensemble constitué de noeuds et des arcs qui les relient entre eux. 19.1 Graphs and Digraphs | |||||||||||||||||||||||||||
Module | nets — 19 Graphs, Networks, and Trees | ||||||||||||||||||||||||||
Attributs |
| ||||||||||||||||||||||||||
Utilisé par | |||||||||||||||||||||||||||
Peut contenir | |||||||||||||||||||||||||||
Declaration |
element graph { att.global.attributes, attribute type { "undirected" | "directed" | "transitionNetwork" | "transducer" | xsd:Name }?, attribute order { data.count }?, attribute size { data.count }?, ( ( label, model.global* )?, ( ( ( node, model.global* )+, ( arc, model.global* )* ) | ( ( arc, model.global* )+, ( node, model.global* )+ ) ) ) } | ||||||||||||||||||||||||||
Exemple | <graph xml:id="cug1" type="undirected" order="5" size="4" rend="LABEL-PLACE bottom center NODE-FRAME none ARC solid line"> <label>Airline Connections in Southwestern USA</label> <node xml:id="lax" degree="2"> <label>LAX</label> </node> <node xml:id="lvg" degree="2"> <label>LVG</label> </node> <node xml:id="phx" degree="3"> <label>PHX</label> </node> <node xml:id="tus" degree="1"> <label>TUS</label> </node> <node xml:id="cib" degree="0"> <label>CIB</label> </node> <arc from="#lax" to="#lvg"/> <arc from="#lax" to="#phx"/> <arc from="#lvg" to="#phx"/> <arc from="#phx" to="#tus"/> </graph> | ||||||||||||||||||||||||||
Note | un ou plusieurs noeuds et aucun à plusieurs arcs dans un ordre
quelconque. |