A formal grammar is a set of production rules that describe how to form strings of valid syntax. Formal Grammars are most often used to specify the syntax of a programming language.
5
votes
0answers
164 views
GA grammar induction program/code?
Does anyone know of a program that uses a GA to perform grammar induction/inference, I've read tonnes of research papers and articles on this stuff like Lankhorst and De Pauw but I can't find any ...
3
votes
0answers
105 views
How can I incorporate ternary operators into a precedence climbing algorithm?
I followed the explanation given in the "Precedence climbing" section on this webpage to implement an arithmetic evaluator using the precedence climbing algorithm with various unary prefix and binary ...
2
votes
0answers
167 views
Algorithm to convert regular expression to linear grammar
What is the Standard Algorithm to convert any given Regular Expression(RE) to a Left (or Right) Linear Grammar?
I know I can do this like this (to write Linear Grammar from RE):
RegEx -> NFA ...
2
votes
0answers
124 views
Generate TextMate language grammar from PEG.js grammar
Is there a tool that translates a PEG.js grammar to a TextMate grammar?
I am building my own language and would like to have syntax highlighting for it in my preferred editor, TextMate. The grammar ...
2
votes
0answers
102 views
Add error checking via production rules to LALR(1) grammar to handle all inputs
I have a grammar that represents expressions. Let's say for simplicity it's:
S -> E
E -> T + E | T
T -> P * T | P
P -> a | (E)
With a, +, *, ( and ) being the letters in my alphabet.
...
2
votes
0answers
295 views
Decorating parse tree using attribute grammar
Given the following attribute grammar for type declarations, I need to be able to produce a parse tree for any given string, for example "A, B : C;", and then decorate the tree.
I can generally do ...
2
votes
0answers
107 views
Composing data-structures/strings matching a CFG
The JSON syntax is an example of a CFG.
Valid JSON strings are a sequence of tokens constrained to a CFG... or, the tokens can -equivalently- be thought of as a structure of nested values.
Valid ...
2
votes
0answers
127 views
Two level grammar
I am trying to determine whether suggested changes to the EcmaScript grammar introduce ambiguities.
The grammar is odd in a few ways
There is no regular or context free lexical grammar meaning ...
1
vote
0answers
62 views
NLTK regexp for noun phrases to not match ending with a preposition
I'm trying to identify noun phrases using NLTK, but am still a little green on regular expressions.
I was originally using a regexp like this:
NP: {<PP\$>?<JJ.*>*<NN.*>+}
But I ...
1
vote
0answers
112 views
Converting ambiguous to unambigous grammar for arithmetic expressions
I'm attempting to come up with a non-ambiguous grammar for arithmetic expressions to make an Earley parser faster but I seem to be having trouble.
This is the given ambiguous grammar
S -> E | ...
1
vote
0answers
64 views
Abstract grammar of the AST in Python : questions for “FunctionDef” et “arguments”
I'm trying to use the ast module in Python 3 to parse some Python code.
For now I'm only coding a simple node visitor that will output the original code.
I have difficulties to convert some nodes of ...
1
vote
0answers
105 views
Delimiter for grammar rules
I try to figure out how I can extract the different Parameters of a given expression of my grammar.
One grammar rule might look like this:
s( X, Y(X,-), T(Y(X,-),X,X) )
First I want to extract the ...
1
vote
0answers
84 views
motion detection 'if ''sentence
I've been writing this motion detecton prog, and met with a problem with 'if sentence', here's the code:
for (int i = 0; i < frameSize; i++, backFrame++, currFrame++)
{
...
1
vote
0answers
190 views
Detecting meaningless and/or grammatically incorrect sentence with LanguageTool
I need to check spells and grammars in texts so I started using LanguageTool API (Can be found here). Now, when I am writing the start-up code provided by them as follows-
JLanguageTool langTool = ...
1
vote
0answers
256 views
How to solve expressions using a parse tree?
Hi I have been taking some basic tutorials of parsing, I have been able to understand the basics of CFG and parse tree.
Take following grammar for basic equations:
term
: INTEGER
| '(' ...
1
vote
0answers
25 views
S-attributed grammar may specify AST?
As far as I understand, using return values and element labels in ANTLR are sufficient to build an AST. e.g.
r returns [int c, String d] :
a='class' b=ID ... {$c=$b; $d=$a;}
Is this ...
1
vote
0answers
139 views
Voice Grammar for mobile application
Isn't any Open Source GRXML interpreter is available ?
i m trying to build a voice driven mobile app using Nuance Dragon SDK.
Basically SDK returns text of the recognised voice.
i like to use ...
1
vote
0answers
29 views
How to change the recognized speech output in XML?
I have defined multiple rules in XML for C#. The file is loaded and RecognizeAsync(RecognizeMode.Multiple) is eventually called for what I hope to become continuous recognition. The SpeechRecognized ...
1
vote
0answers
422 views
Trouble with the Speech Recognition Grammar - VB.NET
When I try to load the grammar I made programatically I got an error:
SAPI does not implement phonetic alphabet selection.
My code:
Public Class Form1
Dim engine As New ...
1
vote
0answers
141 views
spirit qi grammar issues
First of all, sorry for the inaccurate title, it's just that I don't actually know whats causing the compilation error ( Im new to spirit/phoenix/tuple ), hence for readability of my question I ...
1
vote
0answers
84 views
How markers can result in conflicts?
Why does a grammar with the following rule result in a conflict?
Statement | IF {...} LP BoolExp RP %prec IFX Statement { ... }
| ...
The IFX terminal is for the ...
1
vote
0answers
128 views
Translate simple formal grammar to vim syntax
I want to write bison syntax file for vim. I've managed to write syntax rule for definition section. Now I'm trying to compose syntax rule for bison rule. So, I have
rule : identifier ":" ...
1
vote
0answers
130 views
English Grammar / Vocab tools?
I'm looking for data/libraries useful for analyzing English vocabulary and grammar. I'm attempting to build my own analysis software as a side-project of mine (e.g. read in a paragraph, and get some ...
1
vote
0answers
192 views
ANTLR IDL Grammar
Using ANTLR I am trying to create a very simple IDL-style grammar. Here is what I have so far.
grammar idl;
data_type
: 'DataType' ID LCURLY attribute_list RCURLY
;
modifier
: 'public'
;
...
1
vote
0answers
82 views
MGrammar and more than one valid interpretation
I think what I may have is the dangling else problem, but I'm not really sure. The language I'm tasked with writing needs to support multi-line if statements as well as single line i.e.
...
0
votes
0answers
14 views
grammar construction to strip off anything inside tag and return remaining part as token list
I am new to grammar world. how to proceed with writing grammar to remove tag data in a text..
Example input:
START_TAG abc END_TAG XYZ
XYZ START_TAG abc END_TAG
Output:
xyz
xyz
0
votes
0answers
13 views
javascript speech recognition grammar input limit
I am trying to limit speech recognition to a set of sentences by adding a grammar parameter to the input field.
It looks like this:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE ...
0
votes
0answers
18 views
Looking for idiom database to download
I'm working on a creative writing mobile app and I'm looking for a database of idioms. I can't seem to find a "downloadable" database of idioms for free or purchase. Has anybody come across any? I did ...
0
votes
0answers
33 views
Parser not working as expected
I started experimenting with PLY recently. I have the following code:
import ply.lex as lex
# List of token names
tokens = (
'BASIC',
'ACTION',
'RESULT',
)
t_BASIC = ...
0
votes
0answers
22 views
Ambiguous grammar in parse phase
I want to build compiler to my own language,
I wrote the grammar and finished lexer phase
my question in parse phase this part of my EBNF grammer
Statement → Block | Assignment | ...
0
votes
0answers
61 views
While loop expressions in compiler parser construction
I am kinda new to design and constructing compilers. The thing I would like to implement is adding the while loop expressions to my so-far existed c/c++ code based on lets say these general BNF ...
0
votes
0answers
62 views
Parse Nested Parentheses in Abstract Syntax Tree with Javacc
I am trying to parse expressions such as a*(4+5) in my parser to build the abstract syntax tree.
void addSub() : {}
{
mulDiv() ((<ADD> mulDiv() )| (<SUB> mulDiv() ) )*
}
void ...
0
votes
0answers
46 views
PocketSphinx Language model
I am working with pocketsphinx using gstreamer and am having some issues with recognition. Among the words I need recognized are longer strings of words. For example, a sample of the word list would ...
0
votes
0answers
60 views
Writing antlr grammar to parse a structured text file and store data
I have been trying to write a grammar for the following type of data.
I need to extract the function name with max no. of blocks in each and as well as store all the variable names (those declared ...
0
votes
0answers
93 views
how to use the generated parser from antlr with java
I am trying to generate an AST with Java, for that I used this code:
String src = "int k = 5;";
cAST3Lexer lexer = new cAST3Lexer(new ANTLRStringStream(src));
System.out.println("a");
...
0
votes
0answers
29 views
can't createunambiguous grammar
Consider the example:
BOOL --> BOOL BOP BOOL | UPO | EXP | ( BOOL ) | CONST
CONST --> true | false | var
BOP --> and | or
UOP --> not
EXP --> EXP COP EXP
COP ...
0
votes
0answers
84 views
Make Pyparsing handle Left-Recursive Grammar Rules
I'm currently implementing an Ada 2005 parser using Pyparsing and the reference manual grammar rules. We need this in order to analyze and transform parts of our aging Ada-codebase to C/C++.
However, ...
0
votes
0answers
23 views
Transform LR(2) grammar to LR(1)
I've an exercise in which I have LR(2) grammar and I want to transform in LR(1) grammar. But I don't see how I can do that.
I've this grammar (4 rules) :
e -> true | false | id | e ^ e | e v e | ...
0
votes
0answers
27 views
Simultaneous Assignment Grammar
So I know languages like Python, have this thing called simultaneous (or "multiway") assignment.
Today at my exam I came across a question that was something along the lines of: "Write the productions ...
0
votes
0answers
97 views
Backus-Naur Form to Chomsky Normal Form Algorithm
The program I'm writing (in Java) determines whether an expression (input through console) is part of the language generated by provided Backus-Naur Form rules (in a text file). The idea is to convert ...
0
votes
0answers
84 views
Add attribute to nltk grammar python
I'm creating a function refine(grammar) witch holds certain objectives.
Check if the grammar is on the nonlexical() form.
IF TRUE, create two attributes
grammar_rules => contains a list of all ...
0
votes
0answers
31 views
What resources besides the available source code provide a Razor ViewEngine grammar or similar descriptive document?
What resources besides the available source code provide a Razor ViewEngine grammar or similar descriptive document?
Specifically, I want to study how the fundamentals of the view engine are derived ...
0
votes
0answers
72 views
javascript grammar and automatic semocolon insertion
I'm trying to implement javascript parser and I stuck in a problem. Javascript has a technique called "semicolon insertion". So what is a common way to deal with automatic semicolon insertion in js ...
0
votes
0answers
34 views
Looking for a sensible formalism for PEG-like destructuring bind on unordered maps
I am currently investigating using PEG semantics as a basis for generic destructuring bind, an idea I picked up from Ometa. I am fond of the general thrust of this.
One area I've run into trouble in ...
0
votes
0answers
75 views
Give an example of a harmful ambiguity that can arise from a grammar.
I have this problem for a formal language processing course for an LL1 grammar:
Give an example of a 'harmful' ambiguity; i.e. a string for which different syntax trees describe different regular ...
0
votes
0answers
41 views
Confusion related to a grammar
I was reading this wikipedia article for generating grammar. They have mentioned that for generating null string in the grammar we can have a rule
S->lambda
only if S doesn't appear on the right ...
0
votes
0answers
97 views
What types of grammar files are usable for spoken voice recognition?
I'm using the System.Speech library in C# and I would like to create a smaller file to house commands as opposed to the default grammar. I'm not totally sure what I need. I've been looking at several ...
0
votes
0answers
169 views
Writing xText xml grammar
I am writing an xText grammar for a xml language.
I always get multiple decisions errors.
I know why i get them cause a Tag can contain another tag or any other content
like:
<xml>
...
0
votes
0answers
52 views
How to override rejection of Facebook Action based on incorrect “grammatically incorrect” error
I have submitted three different versions of our open graph "Friend" action, which takes a Profile as an object. The versions are all perfectly grammatically correct. I do not know if this is being ...
0
votes
0answers
138 views
ANTLR Error Recovery Causing a NullPointerException in Java
I have an ANTLR Grammar that is in the form:
A - B: more,things
However sometimes, either A or B can be missing such as:
- B: more, things //Skip
A - : some, other, things //Skip
C ...


