Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
299 views

Is this an ambiguous grammar? How should I resolve it?

To preface this, my knowledge of this kind of stuff is puny. Anyways, I've been developing a context-free grammar to describe the structure of alegbraic expressions so I can teach myself how the CYK ...
4
votes
2answers
111 views

Is the language of all strings over the alphabet “a,b,c” with the same number of substrings “ab” & “ba” regular?

Is the language of all strings over the alphabet "a,b,c" with the same number of substrings "ab" & "ba" regular? I believe the answer is NO, but it is hard to make a formal demonstration of it, ...
2
votes
3answers
291 views

How to deal with overlapping character groups in different tokens in an EBNF grammar?

I'm using an LL(k) EBNF grammar to parse a character stream. I need three different types of tokens: CHARACTERS letter = 'A'..'Z' + 'a'..'z' . digit = "0123456789" . messageChar = ...
1
vote
2answers
58 views

ANTLR: Define new channel in grammar

I know it is possible to switch between the default and hidden token channels in an ANTLR grammar, but lets say I want a third channel. How can I define a new token channel in the gramar? For ...
1
vote
0answers
56 views

Is there a repository for bison grammar files?

ANTLR provides the link below to download many grammar files. http://www.antlr.org/grammar/list Thus I am wondering know is there any place that does the same thing for Bison? Thx~
1
vote
1answer
164 views

Is Syntax Error reporting possible with boost::xpressive grammars?

I'm trying to parse a custom language (not too dissimilar to JSON), and I decided to try using boost expressive, as it looked fun. However, when an xpressive match fails, it simply fails. Is there ...
0
votes
1answer
31 views

Top Down Parsing - First and Follow

I have the following Grammar that i am trying to learn how to do first and follow. I think i have the FIRST correct. However, the FOLLOW is confusing due to the Non - Terminal C Here is the Grammar ...
0
votes
0answers
6 views

Statically-scheduled Incremental Attribute Grammar Evaluation Algorithm

I was wondering if someone could point me to a paper/resource presenting a static incrementalized attribute grammar evaluation algorithm. To be more clear, the algorithm I am looking for is in the ...
0
votes
0answers
13 views

Distinguishing between ll and lr grammars [closed]

I already have a lot of theory on this question. But what i need is a specific way to proceed or solve the mcqs for competitive exams. So its that how to disntinguish between ll and lr grammars. And ...
0
votes
1answer
53 views

Is it possible to prove that L is a regular language?

Let L = {a^f(m) | m >= 1 } where f: Z^+ -> Z^+ is monotone increasing and complies that for all element n in Z^+ there is an m belonging to Z^+ such that f(m+1) - f(m) >= n. Is it possible ...
0
votes
1answer
73 views

Constructing a Follow Set

While creating a first set for a given grammar, I noticed a scenario not described in my reference for the algorithm. Namely, how does one calculate the follow set for a nonterminal with a rule such ...