<arc>

<arc> グラフを構成するノード間の辺を示す. 19.1 Graphs and Digraphs
モジュールnets — 19 Graphs, Networks, and Trees
属性
from当該辺が有向である場合,起点となるノードを示す.
状態 必須
データ型
data.pointer
The identifier of a node.
to当該辺が有効である場合,終点となるノードを示す.
状態 必須
データ型
data.pointer
The identifier of a node.
当該モジュールを使用するものgraph
下位
core: label
宣言
element arc
{
   att.global.attributes,
   attribute from { data.pointer },
   attribute to { data.pointer },
   ( label, label? )?
}
<arc from="#T3to="#T3">
 <label>OLD</label>
 <label>VIEUX</label>
</arc>
解説
The <arc> element must be used if the arcs are labeled. Otherwise, arcs can be encoded using the adj, adjTo and adjFrom attributes on the <node> tags in the graph. Both <arc> tags and adjacency attributes can be used, but the resulting encoding would be highly redundant.
Zero, one, or two children <label> elements may be present. The first occurence of <label> provides a label for the arc; the second provides a second label for the arc, and should be used if a transducer is being encoded.