<root>

<root> (nodo radice) rappresenta il nodo radice di un albero 19.2 Trees
Modulonets — 19 Graphs, Networks, and Trees
Attributi
valueassegna alla radice un valore, che può essere una struttura di tratti o altro elemento di analisi
Stato Richiesto se applicabile
Tipo di dati
data.pointer
Valori A valid identifier of a feature structure or other analytic element.
childrenfornisce una lista di identificatori degli elementi figli del nodo radice
Stato Richiesto
Tipo di dati 1–∞ occurrences of
data.pointer
separato da spazio bianco
Valori A list of valid identifiers.
Nota
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 (ordinato) indica se la radice è ordinata
Stato Richiesto se applicabile
Tipo di dati
data.xTruthValue
Nota
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.
outDegreeindica il grado in uscita della radice, cioè il numero dei suoi figli
Stato Opzionale
Tipo di dati
data.count
Valori A nonnegative integer.
Nota
The in degree of the root is always 0.
Usato datree
Può contenere
core: label
Dichiarazione
element root
{
   att.global.attributes,
   attribute value { data.pointer }?,
   attribute children { list { data.pointer+ } },
   attribute ord { data.xTruthValue }?,
   attribute outDegree { data.count }?,
   label?
}
Esempio
<root xml:id="vp1children="#vb1 #pn1outDegree="2">
 <label>VP</label>
</root>
<leaf xml:id="vb1"/>
<leaf xml:id="pn1"/>