<root>

<root> (root node) 木の根要素を示す. 19.2 Trees
モジュールnets — 19 Graphs, Networks, and Trees
属性
value 当該根要素の値絵お示す.これは,素性構造または他の分析要素となる.
状態 使えるならば必須
データ型
data.pointer
A valid identifier of a feature structure or other analytic element.
children 当該根要素の子要素となる要素の識別子のリストを示す.
状態 必須
データ型 1–∞ occurrences of
data.pointer
空白文字で区切られる
A list of valid identifiers.
解説
If the root has no children (i.e., the tree is ‘trivial’), then the children attribute must be omitted. For technical reasons, it cannot be specified as root children=''.
ord (ordered) 当該根要素が,順序付きかどうかを示す.
状態 使えるならば必須
データ型
data.xTruthValue
解説
The value true indicates that the children of the root are ordered, whereas false indicates the are unordered.
Use if and only if ord is specified as partial on the <tree> element and the root has more than one child.
outDegree 当該根要素の出の次数,すなわち子要素の数を示す.
状態 任意
データ型
data.count
A nonnegative integer.
解説
The in degree of the root is always 0.
当該モジュールを使用するものtree
下位
core: label
宣言
element root
{
   att.global.attributes,
   attribute value { data.pointer }?,
   attribute children { list { data.pointer+ } },
   attribute ord { data.xTruthValue }?,
   attribute outDegree { data.count }?,
   label?
}
<root xml:id="vp1children="#vb1 #pn1outDegree="2">
 <label>VP</label>
</root>
<leaf xml:id="vb1"/>
<leaf xml:id="pn1"/>