regular tree grammar start Exp productions Var -> Var (<string>) Exp -> Int (<int>) | Times (Exp, Exp) | Plus (Exp, Exp) | Call (Var, ExpList) ExpList -> <cons> (Exp, ExpList) | <nil> ()
A regular tree grammar consists of a list of start non-terminals and a list of productions. The list of start non-terminals defines what non-terminals are allowed at the root of tree in the language defined by this RTG. The productions specify the terms that can be produced for a certain non-terminal. The left-hand-side of a production is non-terminal, the right hand side is a term that can contain non-terminals.
Formally, a regular tree grammar consists of:
For more formal discussion on tree grammars and tree languages see Tree Automata Techniques and Applications? or Connecting XML Processing and Term Rewriting with Tree Grammars.
Notice that the regular tree grammar shown above contains a few constructs between angle brackets: <cons>
, <nil>
, <string>
, and <int>
. The first two are built-in terminals for representing lists. The last two are built-in non-terminals for strings and integers.
[Under construction -- MartinBravenboer - 25 Apr 2004]