>>> "Bob" == Bob Rossi <[EMAIL PROTECTED]> writes:

 > Hi,

 > What's the difference between yacc.c or glr.c? I'm specifically asking
 > because I would like to understand where I should begin with my push
 > parser effort.

You'd better read the documentation.  Yacc.c is the traditional
LALR(1) deterministic parser , glr.c generalizes the LALR(1) parser to
address the full set of context-free grammars, including
nondeterministic grammars and even ambiguous grammars.

You want to start with yacc.c :)



_______________________________________________
Help-bison@gnu.org http://lists.gnu.org/mailman/listinfo/help-bison

Reply via email to