Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
1k views

GLR parsing algorithm resources

I am writing a GLR parser generator and would like some advice on resources relating to this algorithm both on the internet and of the dead-tree variety (books for those unfamiliar with the ...
3
votes
2answers
65 views

Bison, C++ GLR parsing: how to force shift\reduce conflict?

How can I force the shift\reduce conflict to be resolved by the GLR method? Suppose I want the parser to resolve the conflict between the right shift operator and two closing angle brackets of ...
3
votes
2answers
543 views

How to implement a graph-structured stack?

Ok, so I would like to make a GLR parser generator. I know there exist such programs better than what I will probably make, but I am doing this for fun/learning so that's not important. I have been ...
1
vote
1answer
56 views

C++ GLR parsers with Bison

I'm using Bison to generate a parser. I've got one shift/reduce conflict where I really need Bison to use GLR rather than LALR to deal with it. But I've passed the %glr-parser directive and the source ...
1
vote
1answer
74 views

GLR parser with error recovery: too much alternatives when there are errors in input

Preamble I have written GLR-parser with error recovery. When it encounters an error it splits into following alternatives: Insert the expected element into input (may be the user just missed it) ...
1
vote
2answers
128 views

Any GLR parser generators for .Net?

I've been using fslex/fsyacc to generate a tentative grammar to comprehend semi-structured data. After getting some guidance to look into a GLR parser for the problem space, my search for a tool that ...
0
votes
0answers
78 views

How to get 'expected token' in bison/yacc GLR-parser?

How to get 'expected token' in bison/yacc GLR-parser? Hi, In the project i am doing, there'er a few ambiguous gramar. So i am trying to use %glr-parser to solve the shift/reduce confilicts. When i ...