[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: yacc.c or glr.c
From: |
Akim Demaille |
Subject: |
Re: yacc.c or glr.c |
Date: |
Tue, 07 Feb 2006 08:58:37 +0100 |
User-agent: |
Gnus/5.110004 (No Gnus v0.4) Emacs/21.4 (gnu/linux) |
>>> "Bob" == Bob Rossi <address@hidden> 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 :)
- yacc.c or glr.c, Bob Rossi, 2006/02/06
- Re: yacc.c or glr.c,
Akim Demaille <=