yaep icon indicating copy to clipboard operation
yaep copied to clipboard

Yet Another Earley Parser

Results 18 yaep issues
Sort by recently updated
recently updated
newest added

The following mode has problems (ignoring the glaring obvious issues with memory cleanup): ` yaep_set_one_parse_flag(g,0); ` yaep_set_cost_flag(g,1); The attached code yields: > Translation: > 0: ALTERNATIVE: node=1, next=2 > 1:...

While preparing #16, I noticed that the build/testing system is a bit onerous to work with. Specifically, the various `*.in` files appear to be some intermediate products (from autoconf?), probably...

There is some confusion about which license(s) apply to YAEP. * The [README](../blob/master/README.md) states YAEP is licensed under LGPL version 2 * The [copyright file](../blob/master/copyright) states YAEP is dual licensed...

YAEP currently manipulates a lot of static variables during its operation. This makes it impossible to use multiple parsers asynchronously. One simple preliminary fix would be to declare all these...

What is the best way to make sure my application memory management doesn't interfere with the speed (or function) of yaep's memory management? I'm not sure the best way to...

after `make install`, i try ` ~$ echo '#include' >test.c` ` ~$ gcc test.c` ` In file included from test.c:1:0:` ` /usr/local/include/yaep.h:47:22: fatal error: allocate.h: No such file or directory`...

Hi, This project looks very interesting to me as I'm trying to build earley parsers with different strategies. @vnmakarov I was wondering if it's possible for you to briefly mention...

Hi there. Great work! (too many c++only runtime parser generators out there) Is there any chance to easily create rules at runtime? I mean, `earley_parse_grammar(g, description)` accepts string as grammar...