Wirth–Weber precedence relationship

The Wirth–Weber relationship between a pair of symbols (V_t \cup V_n) is necessary to determine if a formal grammar is a simple precedence grammar, and in such case the simple precedence parser can be used.

The goal is to identify the when the viable prefixes have the pivot and must be reduced. A \gtrdot means that the pivot is found, a \lessdot means that a potential pivot is starting, and a \dot = means that we are still in the same pivot.

Formal definition

 G = <V_n, V_t, S, P>

Precedence relations computing algorithm

We will define three sets for a symbol:


Note that Head*(X) is X if X is a terminal, and if X is a non-terminal, Head*(X) is the set with only the terminals belonging to Head+(X). This set is equivalent to First-set or Fi(X) described in LL parser

Note that Head+(X) and Tail+(X) are \empty if X is a terminal.


The pseudocode for computing relations is:

Note that \lessdot and \gtrdot are used with sets instead of elements as they were defined, in this case you must add all the cartesian product between the sets/elements

Examples

S \to aSSb | c

precedence table:

Sabc$
S\dot = \lessdot \dot = \lessdot
a\dot =\lessdot \lessdot
b \gtrdot \gtrdot \gtrdot\gtrdot
c \gtrdot\gtrdot\gtrdot\gtrdot
$ \lessdot \lessdot