Search the web
Sign In
New User? Sign Up
GOLDParser · GOLD Parsing System
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2247 - 2280 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2247
Hi guys.. I'm new to goldparser...I'm trying to make to make a GP grammmar for TTCN-3 starting from a BNF format ( TTCN3 standard last version). At this point...
miromauleon
Offline Send Email
Apr 4, 2006
9:27 am
2248
... The problems you describe do not stem from using GOLD as a tool. Consider the hint in this group under database --> FAQ --> 4. -manfred...
svv1999
Offline Send Email
Apr 4, 2006
11:01 am
2250
Miro -- I assume you already understand the specific meaning of reduce-reduce and shift-reduce conflicts. For large grammar such as yours, these conflicts are...
Carlos Christensen
christensenc@...
Send Email
Apr 5, 2006
12:24 am
2251
Hi, I want to buid a complete compiler. when I have finished parser with gold parser ,I dont know how to go on . how to make a pareser with other parts of a...
王高峰
neverdefeated3000@...
Send Email
Apr 5, 2006
2:04 am
2252
That stage can be quite difficult to do. One solution is to translate your grammar into a language with a readily available compiler. Good examples are C++ and...
Devin Cook
GOLD-Admin@...
Send Email
Apr 5, 2006
4:12 am
2253
Reduce-reduce errors are the result of ambiguity in the grammar. In particular, the system reaches a point, where more than one rule can be reduced with the...
Devin Cook
GOLD-Admin@...
Send Email
Apr 5, 2006
4:12 am
2254
... Compiler generating systems are a field of research. Therefore no general advice could possibly given in a forum like this. Me, myself and I have the...
svv1999
Offline Send Email
Apr 5, 2006
4:27 am
2255
I am trying to eliminate a Shift-Reduce conflict in my syntax (a pascal like syntax). The culprit is my <case statement>. The Builder gives me the following...
jmsirkel
Offline Send Email
Apr 5, 2006
5:58 am
2256
In your example program below, does the "else" belong to the case statement or the if statement? Your best solution is, if you are designing the grammar...
Devin Cook
GOLD-Admin@...
Send Email
Apr 5, 2006
6:49 am
2257
... Under my definition asking for _help_ means: I am normally able to do this myself, but this time everything I tried failed. I am in a case of emergency. ...
svv1999
Offline Send Email
Apr 5, 2006
8:04 am
2258
No, I didn't design the grammar myself. I need to parse existing code in this pascal-like language (they call the language cal). To make the grm, I have a cal...
jmsirkel
Offline Send Email
Apr 5, 2006
12:59 pm
2259
Hi Manfred, Confession time. Yes, you are right that I need a hand with my homework (although this mini-project is just out of interest and not to be delivered...
jmsirkel
Offline Send Email
Apr 5, 2006
2:30 pm
2260
... Then please rethink this defintion of yours: <case list element> ... -manfred...
svv1999
Offline Send Email
Apr 5, 2006
10:05 pm
2261
... Have you worked through my "Trys on better Documentation" in the files section of this forum, which is exactly on the open/closed approach? If so, are you...
svv1999
Offline Send Email
Apr 5, 2006
10:40 pm
2262
Jake -- I believe questions like yours (about the "else" in the switch statement) are useful and welcome in this forum. It is crucial for software developers...
Carlos Christensen
christensenc@...
Send Email
Apr 6, 2006
9:16 am
2263
... Yes they are, but not in the general case. There are too many fakes out there under every view. Fakes who pretend to be experts as well as fakes who...
svv1999
Offline Send Email
Apr 6, 2006
2:39 pm
2264
Hi, I want to design a new interpreter with Gold. What book do you recommend ? Hugo...
hugo
hugo@...
Send Email
Apr 6, 2006
3:21 pm
2265
I don't know of any books offhand that mention GOLD in particular. Most parsing technology books deal with the traditional development suite - YACC. A good...
Devin Cook
GOLD-Admin@...
Send Email
Apr 6, 2006
3:47 pm
2266
I don't think that has happened in this group yet. ... Developers might see a flaw that the designer is completely blind to. I know, in my case, I created a...
Devin Cook
GOLD-Admin@...
Send Email
Apr 6, 2006
3:47 pm
2267
... Under the assumption, that there are any books out there, how can anybody recommend a book without knowing about your skills? For me it would be of...
svv1999
Offline Send Email
Apr 6, 2006
11:30 pm
2268
... If you haven't already, I would suggest you take a class on Automata Theory, or at least grab a text book and see if you can follow it. Automata Theory is...
Max Battcher
world_maker
Offline Send Email
Apr 7, 2006
5:42 am
2269
Devin Still working in NLP. Do you have an idea on how to manage out many ambiguities in a NLP language to parse out plain grammatical text structures? I...
AndresH
andy_pandora
Offline Send Email
Apr 8, 2006
2:28 am
2270
The problem is that you have ambiguity, and that is basically a recursion problem. The route I have used for this problem was to write a mini language, that...
Nick Leaton
njleaton
Offline Send Email
Apr 9, 2006
3:30 pm
2271
... An ATN is equivalent to a turing machine or the lambda calculus. So what are you guys talking of? You seem to be in search for a formalism that obfuscates...
svv1999
Offline Send Email
Apr 9, 2006
8:56 pm
2272
I researched ATN and ASD parsing mechanism, and I found no possible way to write a simple grammar to use with GLOD as the simplest grammar of a NP is recursive...
AndresH
andy_pandora
Offline Send Email
Apr 9, 2006
9:24 pm
2276
I am using the GOLD Parser with the pre-supplied C Grammar. I get a parse error in this code .. can someone tell me what I am doing wrong. typedef struct { int...
Y
thisisyat
Offline Send Email
Apr 11, 2006
3:25 pm
2277
Hi, can somebody tell me, if GOLD Parser supports context dependent grammar. wbr Ali Dipl. Ing. Ali Algan tel.: +43 (0) 650 35 25 333 Wienerstraße 6/DG 2601...
Dipl. Ing. Ali Algan
office@...
Send Email
Apr 12, 2006
11:58 am
2278
... GOLD tells you which terminals are expected. Alphastruct is an identifier and is not expected. What you are doing wrong is pure guesswork because you do...
svv1999
Offline Send Email
Apr 12, 2006
2:12 pm
2279
... Because GOLD is an LALR(1) generating system it cannot support context sensitive languages directly. And because currently GOLD's intention is to not...
svv1999
Offline Send Email
Apr 12, 2006
2:22 pm
2280
Hi everyone. I am happy to announce a new release of the Calitha C# GOLD Parser Engine! The binaries, source and documentation can be downloaded from ...
Robert2275
Offline Send Email
Apr 12, 2006
6:56 pm
Messages 2247 - 2280 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help