<root>

<root> (root node) represents the root node of a tree. [19.2 Trees]
Module nets — Graphs, Networks, and Trees
Attributes
value⚓︎ identifies the root node of the network by pointing to a feature structure or other analytic element.
Status Optional
Datatype teidata.pointer
children⚓︎ identifies the elements which are the children of the root node.
Status Required
Datatype 1–∞ occurrences of teidata.pointer separated by whitespace
Note

If the root has no children (i.e., the tree is ‘trivial’), then the children attribute should be omitted.

ord⚓︎ (ordered) indicates whether or not the root is ordered.
Status Optional
Datatype teidata.xTruthValue
Note

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⚓︎ gives the out degree of the root, the number of its children.
Status Optional
Datatype teidata.count
Note

The in degree of the root is always 0.

Contained by
nets: tree
May contain
core: label
Example
<root xml:id="vp1children="#vb1 #pn1"
 outDegree="2">

 <label>VP</label>
</root>
<leaf xml:id="vb1"/>
<leaf xml:id="pn1"/>
Content model
<content>
 <elementRef key="labelminOccurs="0"/>
</content>
Schema Declaration
<rng:element name="root">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:optional>
  <rng:attribute name="value">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:attribute name="children">
  <rng:list>
   <rng:oneOrMore>
    <rng:ref name="teidata.pointer"/>
   </rng:oneOrMore>
  </rng:list>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="ord">
   <rng:ref name="teidata.xTruthValue"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="outDegree">
   <rng:ref name="teidata.count"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:ref name="label"/>
 </rng:optional>
</rng:element>
element root
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   attribute value { teidata.pointer }?,
   attribute children { list { teidata.pointer+ } },
   attribute ord { teidata.xTruthValue }?,
   attribute outDegree { teidata.count }?,
   label?
}