In formal language theory, a context-free grammar (CFG) is a grammar subject to a special constraint: that the left-hand side (LHS) consist of a single non-terminal symbol. CFGs are capable of representing the set of context-free languages (CFLs).

learn more… | top users | synonyms

0
votes
2answers
69 views

How can I generate all possible strings given a grammar rule?

I would like to, given a JSGF grammar, generate all the terminal strings it would map to. For example, given A (B | C) D [E], my desired output would be: A B D E A C D E A B D A C D I decided to ...
0
votes
0answers
12 views

Writing Three Assertions

Trying to do this homework (won't get a grade for this but it will probably show up in some shape or form on my exam). How do I complete the following program writing the three assertions omitted ...
1
vote
2answers
30 views

Unambiguous grammar for exponentiation operation

E -> E+T | E-T | T T -> T*F | T/F | F F -> i | (E) How can I modify this grammar to allow an exponentiation operation ^ so that I can write i+i^i*i? Since we know that order of operations ...
1
vote
0answers
56 views

Why is the grammar for this code ambiguous?

I was searching through SO and I found this question that caught my eye. Recursive descent parser implementation Basically this person has this context free grammar for if-then and else-then S ...
0
votes
1answer
26 views

bison grammar rules for a custom pascal like language

I'm trying to make a compiler for a custom pascal like language using bison and flex and I end up getting syntax errors for programs that should be correct according to my custom grammar. My custom ...
0
votes
1answer
47 views

Does this require a 2-pass parse: comments embedded within tokens?

Using a parser generator I want to create a parser for "From headers" in email messages. Here is an example of a From header: From: "John Doe" <john@doe.org> I think it will be ...
-2
votes
0answers
13 views

Negative effects of E-productions in a grammar in parsing [closed]

Explain how to remove E(empty)-productions from a given CFL. Explain the negative effects of the E-productions in a grammar in parsing. This is a question i got in a compiler paper. Please help me ...
0
votes
1answer
40 views

Is it context-free language?

i have a problem with an exercise: L = {an bm cp | 1 <= n <= m <= p} Is it possible write a grammar for that exercise ? I do not understand how to solve it :( please help me
0
votes
1answer
30 views

Antlr 3 keywords and identifiers colliding

Surprise, I am building an SQL like language parser for a project. I had it mostly working, but when I started testing it against real requests it would be handling, I realized it was behaving ...
1
vote
0answers
35 views

LL(k) context free grammars

How to verify whether a context free grammar is LL(k) for k > 1? For example: A-> aBaa | bBba B-> b | epsilon is a LL(2) grammar. Can please somebody justify?
2
votes
0answers
31 views

Contextfree language or not? I can write a grammar but not use pumping lemma

I have the language: L = {0^i 1^i | i >= 0} The grammar that describes it proves it is a context free language: S -> 0S1 | e If a language is context free, Pumping Lemma should hold. ...
0
votes
0answers
37 views

Construct a automaton using grammar

This grammar describes floating point numbers in a compiler. How can I construct the corresponding automaton? floatnumber ::= pointfloat | exponentfloat pointfloat ::= [intpart] fraction | ...
0
votes
1answer
43 views

How to handle arithmetic operator < and > in antlr grammar that removes html tags

Following is my antlr 3 grammar. I want to strip off content inside html tags. The problem arises when I have arithmetic operator < > inside the tag. How can this be handled? grammar T; options ...
3
votes
1answer
57 views

Python Context Free Grammar and PCFG generation benchmarks?

I know there are various functions to use to general CFGs and PCFGs in Python; however they all seem to differ in speed. E.g.: NLTK, PyParsing. Are there any recent benchmarks comparing various ...
1
vote
2answers
63 views

LL(1) predictive parsing — Avoid Left recursion

When defining a grammar, say a grammar to evaluate an arithmetic expression: we divide the Expression to Terms and Factors, like so: E ::= E + T T ::= T * F F ::= num | (E) Then we need ...
0
votes
2answers
46 views

How to separate out the context-free part of a language from the context-sensitive part?

I read this fantastic post on the comp.theory list: http://coding.derkeiler.com/Archive/General/comp.theory/2004-03/0189.html The poster makes the point that most programming languages define a ...
0
votes
1answer
73 views

Context-free-grammar to represent regular expressions

I'm trying to make a context-free-grammar to represent simple regular expressions. The symbols that I want is [0-9][a-z][A-Z], and operators is "|", "()" and "." for concatenation, and for sequences ...
2
votes
2answers
75 views

Does this language have a Pushdown Automata ( PDA )?

the language is: { An B(2n) Cn | where n>=0 } I think it has, because you can process it like this: push A's, push B's, for each C pop three times from stack, if there are no C's and stack is empty, ...
0
votes
0answers
28 views

For a LR parser to accept string, must CFG have augmented grammar/epsilon production?

In the case of the CFG: S → E E → E + T |T T → a|(E) Can we make a LR parser with this grammar as it is? Or does it require adding a new start state (augmented grammar): S'→ S S → E E → ...
-1
votes
1answer
43 views

Prolog program to recognize context free grammar a^n b^n

Using Prolog I'm trying to write a predicate that recognizes context free grammar and returns true if the input list matches the CFG. The alphabet of the input consists only of a,b. The CFG i'm trying ...
0
votes
1answer
40 views

Can a left associative operator be expressed in a way such that top-down LL(1) parsers can understand?

I was trying to implement a LL(1) top-down parser for a calculator language. It only allows us to sum, subtract, divide and multiply numbers. No parentheses. S -> A A -> B + A | B - A | ...
1
vote
1answer
34 views

Is this grammar for matched brackets LL(1)?

The grammar is this: S -> e (epsilon) S -> TS T -> (S) I think it is indeed LL(1), my justification is that for a grammar to be LL(1), for each nonterminal that has more than 1 production rule, ...
1
vote
1answer
76 views

How to show grammar is not LL(1) and convert grammar to LL(1)

I'm trying to find the ambiguity in this grammar so I can remove it and convert it to LL(1), however for the life of me I can't find the ambiguity. Any help will be much appreciated. D -> if (C) ...
-1
votes
1answer
36 views

Explicitly failing a context free grammar sentence parse

I have a context free grammar sentence parser which functions correctly except for the fact that when you either type in something that doesn't exist in its knowledge base or doesn't conform to the ...
1
vote
1answer
44 views

Multiple entries in an LL(1) parsing table?

Given this grammar: S → S1 S2 S1 → a | ε S2 → ab | ε Therefore, we have FIRST(S1) = { a, ε } FOLLOW(S1) = { a } Does that mean that in ...
0
votes
1answer
40 views

How to handle left associative grammar in ANTLR

I am using antlr to generate parser that produces abstract syntax tree. I got some problem about left associative operators. My grammar is like the following: add_expr returns [ASTNode value] ...
1
vote
1answer
68 views

CFG and closure properties [closed]

I am solving one problem and I urgently need a hint to solve one problem: Use closure under union to show that the following language is context-free: {am bn cp dq : n=q or m <= p or ...
1
vote
1answer
31 views

ANTLR version2 grammar syntax?

My professor gave us an assignment about ANTLR, but I found that the given grammar file does not work with current ANTLR versions. Actually, it is an example code included in ANTLR v2, which there ...
0
votes
0answers
55 views

proving that 0^(n)1^(n^2) is not context free language [closed]

The question is in the title? I'm trying to prove it using pumping lemma but I don't know how to deal with the case that vxy is composed with 0/1? Thanks in advance for your help :)
0
votes
1answer
40 views

Bison reduce/reduce conflict

I'm getting a reduce/reduce conflict on the following grammar (excerp) declaration : type list_of_id list_of_id : ID | list_of_id ',' ID ...
2
votes
1answer
85 views

Is my solution correct for this context free grammar?

I'm trying to solve this problem (I think I might have solved it): http://d.pr/i/L5Qm L = {a3nb2n | n >= 0} Basically the problem is saying l is not equal to m or m is not equal to n Rules ...
1
vote
1answer
65 views

Step by step elimination of this indirect left recursion

I've seen this algorithm one should be able to use to remove all left recursion. Yet I'm running into problems with this particular grammar: A -> Cd B -> Ce C -> A | B | f Whatever I try I ...
2
votes
1answer
92 views

Why the need for terminals? Is my solution sufficient enough?

I'm trying to get my head around context free grammars and I think I'm close. What is baffling me is this one question (I'm doing practise questions as I have an exam in a month's time): I've come ...
1
vote
2answers
78 views

Why s--> ^ and A --> a ? in Context Free Grammars

I've been reading: "Tips for creating Context free grammar" post for learning purposes and I nearly understand the concept, but I don't quite understand the following. If we have: L = {am bn | ...
1
vote
1answer
41 views

Returning an attribute from flex to bison

i am trying yo write some kind of a simple compiler that detects undeclared variable, and does some extra stuff. The problem is, i cannot use "$$" in my bison file, it says "$$ of `type' has no ...
1
vote
1answer
103 views

Checking English Grammar with NLTK [closed]

I'm starting to use the NLTK library, and I want to check whether a sentence in English is correct or not. Example: "He see Bob" - not correct "He sees Bob" - correct I read ...
1
vote
1answer
105 views

What is this grammar? Context-free or context sensitive

I am studying Formal Languages and Automata Theory, and I have a question about a problem inside the book that is not answered in it. the question is: Is this language Context Free, Regular or ...
0
votes
1answer
26 views

CFG example: can double variable be replaced with 2 different assignments?

Say I have a context free grammar such as: S-> SaS | b | Λ... can S be "replaced" by 2 different S's at the same time...IE I understand "bab" and "bababab" are strings in this language...is "ba" an ...
1
vote
2answers
88 views

How to read python dictionary and tuples

Can someone help me read this Python dictionary-tuples? I am new to python and I can't get much out of it Grammar = {'AB':('S', 'B'), 'BB':'A', 'a':'A', 'b':'B'} Note: The grammar is the grammar ...
2
votes
0answers
51 views

concepts, techniques to align fragmented line segments [closed]

I am having set of linear features lie on a plane (it does not a matter whether the pane is vertical or horizontal). all linear features are parallel or orthogonal to either vertical axis or to ...
2
votes
1answer
96 views

NLTK Regular Expressions and CFGs

Is there any practical difference in power between a 'regular expression' as exampled by NLTK's docs and a CFG from the same? There definitely should be, since there are context-free languages which ...
0
votes
1answer
92 views

Parser Combinators - Simple grammar

I am trying to use parser combinators in Scala on a simple grammar that I have copied from a book. When I run the following code it stops immediately after the first token has been parsed with the ...
0
votes
1answer
106 views

simple CFG parser with epsilon transition

I have stumbled upon many different algorithms(CYK and Earley) to check whether or not a string is part of the CFL whose CFG is provided. I am looking for something simple to understand and implement. ...
3
votes
1answer
48 views

Ambiguous non-terminal in GLR

When GLR parser reduces some text to the same non-terminal in two ore more ways it merges parse subtrees. Rekers uses 'symbol nodes' for this. I this not each non-terminal could cause a merge. ...
0
votes
1answer
36 views

Bison - handling non LALR(1) grammars

I am making a simple calculator using flex, bison. I developed a grammar which includes two type of expressions - integer expressions and real expressions. The grammar is similar to this: exp -> ...
0
votes
1answer
510 views

Syntax Analyzer in c#

I have given the project to make the syntax analyzer using any programming language. I am doing it in C#. The simple context free grammar has been created. But now i am very confuse to make algorithm ...
1
vote
1answer
235 views

Validate string given Context Free Grammar in Java

How can someone validate if a string is part of a context free Grammar? Not just virtually, but build an algorithm for it? Given a context free grammar with rules such as V-> v1v2 v1->1 | 1v1 v2-> ...
1
vote
5answers
113 views

The grammar for method declarations in Java

The grammar for method declarations in Java is something like the following: Java method declaration BNF: method_declaration ::= { modifier } type identifier "(" [ parameter_list ] ...
3
votes
2answers
149 views

Grammar for language of regular expressions with given alphabet

I'm having a hard time figuring out where to start with this question. The question is to create a grammar for the language of regular expressions with the alphabet { ‘a’, ‘b’, ‘c’, ‘d’, ‘|’, ‘*’, ...
-1
votes
1answer
630 views

Construct grammar given the following language {a^n b^m | n,m = 0,1,2,…,n <= 2m} [closed]

I just took my midterm but couldn't answer this question. Can someone please give a couple of examples of the language and construct a grammar for the language or at least show me how i will go ...

1 2 3 4 5 8