The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
90 views

How to make a functional language compiler

I am looking into writing a language and a compiler for it as a summer project, and am having a hard time finding information on how to use a parse tree or BNF/EBNF to program a compier. The overall ...
0
votes
2answers
40 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 ...
-1
votes
1answer
35 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
38 views

ANTLR4 API to Display Arbitrary ParseTree

The current TestRig tool of ANTLR4 supports the -gui option to parse the whole input file and display the whole resultant parse tree graphically. Is it possible for us to obtain the parse tree first, ...
9
votes
2answers
194 views

Representing a multiple pass Abstract Syntax Tree (AST) in C++?

I am currently exploring designing a compiler that transforms its AST in multiple stages. The idea is that starting from the parse tree, each pass transforms the tree until the resulting AST is ...
0
votes
0answers
52 views

Sentences Pattern in Chomsky Normal Form

I want to design Chomsky Normal Form (CNF) for English Pattern. I've designed it for two days, but I got stuck. I'm not good at Natural Language Processing but I have assignment about it. Firs one, I ...
3
votes
0answers
88 views

Pretty-Printing PyParsing Trees

Have anyone implemented pretty printing (preferrably using Python's builtin pprint module) of parse-trees outputted from PyParsing preferrably with indentation and alignment?
0
votes
1answer
156 views

How to get phrase tags in Stanford CoreNLP?

If I want to get phrase tags corresponding each word, how to I get this? For example : In this sentence, My dog also likes eating sausage. I can get a parse tree in Stanford NLP such as ...
-2
votes
2answers
338 views

HTML Parse tree using Python 2.7

I was trying to get configure one parse tree for the below HTML table,but couldn't form it.I want to see how the tree structure looks like!can anyone help me here? # <html> # <head> # ...
10
votes
1answer
123 views

Searching inside scala 2.10 ASTs

What's the best way to recursively search for an element in scala 2.10 ASTs? The trees might be a result of power.trees(code) or mirror.mkToolBox().parseExpr(code) Edit. In 2.10.0-RC1 parseExpr has ...
1
vote
1answer
70 views

Usage of ruby_parser, AST in prior 1.8.7 and S-expression in ruby?

Recently I am converting the ror project that uses ParseTree in ruby 1.8.7 to ruby 1.9.3 Figured out that ParseTree cannot work with 1.9.3, Searched for it in bunch of googlers, still stuck with some ...
2
votes
1answer
434 views

Unary And Binary Minus in Parse Tree

I am creating a parse tree that will contain expressions similar to 3 - 4 * 8 or 8 * -5 or -(10 * 1) I need a way to distinguish between the unary and binary minus. The way my grammar is ...
1
vote
2answers
292 views

Can we use DFA to parse regular language specified by Context-Free Grammar and generate the parse tree?

As we know, DFA can be used to validate the strings in a regular language. Example 1. L=ac(b)*bcb|ad(b)*bb. A string "acbbbcb" can be validated by a DFA as correct. Also, sometimes, a regular ...
0
votes
1answer
654 views

Converting Parse Tree Into AST (Abstract Syntax Tree) C++

I have a parse tree that parses out a stack of a stack of char (stack<stack<char>>). This gets the characters into a parse tree. My question is how would I convert this parse tree into a ...
3
votes
3answers
221 views

Transform a parse tree of a polynomial to a parse tree of its evaluation according to Horner's scheme

Could you please point me to an algorithm that takes a (binary) parse tree for evaluating a polynomial expression in a single variable and returns an equivalent parse tree that evaluates the ...
1
vote
2answers
600 views

How to print a parse tree using Bison?

I have implemented a parser but it does not print anything. If the given input is syntactically wrong, it does not print "Error" though I included it in the yyerror() routine. Also if the input is ...
0
votes
1answer
500 views

Syntax Directed Definition for a grammar to print the parsing string.

---> Consider the grammar below: S->SaS|bB B->AcB| ε A->dAd| ε For the grammar given above, write the syntax directed definition that prints the string that is being parsed and ...
1
vote
1answer
71 views

Questions from the second chapter of the dragon book

On page 29 it says "The leaves of a parse tree read from left to right form the yield of the tree, which is the string generated or derived from the nonterminal at the root of the parse tree. In Fig. ...
1
vote
2answers
246 views

How to retrieve a HTML tag based on a regular expression

I'm trying to extract every HTML tag including a match for a regular expression. For example, suppose I want to get every tag including the string "name" and I have a HTML document like this: ...
1
vote
1answer
274 views

expression parser in ANTL3 targetting Javascript

I have started playing with ANTL3, I found it very cool, it's support for multiple languages is awesome. Right now I am experimenting with Javascript. I've extended the grammar found @ antlr3 - ...
1
vote
1answer
348 views

Is it possible to to visualize a PL/SQL parse tree?

I'm looking for a means of somehow exporting or visualizing the parse tree of an arbitrary PL/SQL object in Oracle in such a way as to allow comparison between the parse trees of two similar objects. ...
1
vote
3answers
619 views

Grammar Parse tree?

This question is on my CS homework and I have no idea how to do it. Consider the grammar S ← ( L ) S ← a L ← L , S L ← S Draw a parse tree for the sentence ( a , ( a , a ) ) I tried following ...
2
votes
0answers
296 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 ...
0
votes
1answer
602 views

How do you convert the following ambiguous grammar to unambiguous?

I understand how the difference between the two, how ambiguity means that there is at least one string with 2 distinct parse trees while there is only one in an unambiguous tree. But I can't seem to ...
4
votes
2answers
272 views

Does a line profiler for code require a parse tree and is that sufficient?

I am trying to determine what is necessary to write a line profiler for a language, like those available for Python and Matlab. A naive way to interpret "line profiler" is to assume that one can ...
4
votes
2answers
363 views

C/C++ library for lazy evaluation of SIMD/SSE expressions

Libraries such as intel-MKL or amd-ACML provide easier interface to SIMD operations on vectors, but I want to chain several functions together. Are there readily available libraries where I can ...
8
votes
4answers
297 views

Javascript syntax test cases

I'm creating a text editor and I've just finished writing the highlighting algorithms to have each of the syntax appear in a different color, and render in the right position using the proper parse ...
2
votes
1answer
2k views

antlr3 - Generating a Parse Tree

I'm having trouble figuring out the antlr3 API so I can generate and use a parse tree in some javascript code. When I open the grammar file using antlrWorks (their IDE), the interpreter is able to ...
3
votes
1answer
177 views

What is the different between abstract parse tree and parse tree? [duplicate]

Possible Duplicate: What's the difference between parse tree and AST? i need to know what is the different between abstract parse tree and parse tree
13
votes
3answers
2k views

What's the difference between parse tree and AST?

Is it generated by difference phase of a compiling process? Or just difference names for the thing?
1
vote
2answers
1k views

Tool for drawing parse trees?

Does anyone have a good tool for drawing parse trees arising from a context-free grammar? There is this question, but it dealt specifically with finite automata instead of parse trees. I've been using ...
3
votes
1answer
347 views

Boost::Spirit::Qi autorules — avoiding repeated copying of AST data structures

I've been using Qi and Karma to do some processing on several small languages. Most of the grammars are pretty small (20-40 rules). I've been able to use autorules almost exclusively, so my parse ...
0
votes
0answers
235 views

Translate oz code to kernel language

How to translate this part of Oz code to kernel language and how to draw parse tree of translated code? This is my homework on Tuesday. :-) f(a Q W) = f(A q W)
8
votes
4answers
2k views

Generate syntax tree for simple math operations

I am trying to generate a syntax tree, for a given string with simple math operators (+, -, *, /, and parenthesis). Given the string "1 + 2 * 3": It should return an array like this: ["+", [1, ...
5
votes
2answers
258 views

Looking for a good semantic parser for the Russian language

Does anyone known of a semantic parser for the Russian language? I've attempted to configure the link-parser available from link-grammar site but to no avail. I'm hoping for a system that can run on ...
5
votes
1answer
657 views

Is it possible to use Recursive Descent Parser to both verify the grammar AND build the parse tree at the same time?

Is it possible to generate a parse tree at the same time as I use recursive descent parser to check if the data matches grammar? If so, what approach would I use to build a tree as I recursively ...
1
vote
3answers
2k views

How to turn a token stream into a parse tree

I have a lexer built that streams out tokens from in input but I'm not sure how to build the next step in the process - the parse tree. Does anybody have any good resources or examples on how to ...