We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
... if it differs from my LR(1).
Init, Closure, Shift like #196.
Reduce: [A -> alpha dot B beta, h, i], [B -> gamma dot, i, j], [a, j, j+1] __________________ a in Follow(B) [A -> alpha B dot beta, h, j]
Source: Sikkel, Parsing Schemata p. 286.
The text was updated successfully, but these errors were encountered:
For reduced acyclic grammars without indirect left recursion.
Sorry, something went wrong.
This is interesting. It's like Earley with lookahead. Maybe I can even implement SLR(k).
No branches or pull requests
... if it differs from my LR(1).
Init, Closure, Shift like #196.
Reduce:
[A -> alpha dot B beta, h, i], [B -> gamma dot, i, j], [a, j, j+1]
__________________ a in Follow(B)
[A -> alpha B dot beta, h, j]
Source: Sikkel, Parsing Schemata p. 286.
The text was updated successfully, but these errors were encountered: