Block of rules:
AdjunctLeft : [ADJ] ADJ NOUN
NEXT
AdjunctLeft : ADJ [ADJ] NOUN
%
Repetition of the same rule:
AdjunctLeft : ADJ NOUN
%
AdjunctLeft : ADJ NOUN
%
Recursivity operator:
AdjunctLeft : ADJ NOUN
Recursivity: 1
%
``Recursivity'' is specified by numeric values: ``1'' means that the rule must be applied twice. By default, the value is 0, that is a rule is applied only once. This operator permits to specifiy the number of times a rule can be applied. It allows both a more compact representation and an easier control of rule recursivity.
Pablo Gamallo 2009-09-14