<graph>
<graph> 노드와 이 노드를 연결하는 호로 구성된 그래프를 부호화한다. 19.1 Graphs and Digraphs | |||||||||||||||||||||||||
모듈 | nets — 19 Graphs, Networks, and Trees | ||||||||||||||||||||||||
전체 속성에 부가 |
|
||||||||||||||||||||||||
에 의해 사용된 | |||||||||||||||||||||||||
포함할 수 있다 | |||||||||||||||||||||||||
선언 |
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* )+ ) ) ) } |
||||||||||||||||||||||||
예 |
<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> |