Michael Färber
Michael Färber
Would it be possible to create an alternative version of the `list1` function in `earley.ml` that lazily creates a `Seq` (which Lambdapi could then consume element per element as soon...
> @01mf02 the problem does not come from a particular combinator, nor from the fact that we do not parse the input file command by command. The huge memory consumption...
The article [Parsing Mixfix Operators](http://www.cse.chalmers.se/~nad/publications/danielsson-norell-mixfix.pdf) by Danielsson and Norell might be useful in this endeavour.
The API proposed in #288 sounds indeed exactly like what I would need. In the mean time, I implemented [manual precedence climbing](https://github.com/01mf02/jaq/blob/c79f8b210036a7c15da7a7c8b436e2430ca22338/jaq-parse/src/prec_climb.rs), which solves the performance problem for my specific...
The new parser based on [hifijson](https://github.com/01mf02/hifijson/) improves performance by 87% compared to jaq-0.9.0 and by 68% compared to jq for this example: ~~~ hyperfine -L jq ./jq-ndebug,./jaq-0.9.0,./jaq-0.10.0 '{jq} empty ~/Downloads/citylots.json'...
Hi @bb010g, thanks for your extensive changes and congratulations for venturing out into creating a new operator! I made a few comments about changes that should be quite easy to...
On a second thought, I think it would be better if you could split this PR into two: one for your documentation additions, and one for the actual implementation of...
> I don't see any of these comments. It's in my review: https://github.com/01mf02/jaq/pull/142/files/d9af7e7b7e3aea249ca08065410f94c93b02f7c8 I can also see these comments in this thread --- just scroll above. > Understandable! I can...
> Also, I still can't see the review comments you've talked about, and neither can anyone else I've linked this PR to. Oh, this seems to have been my fault;...
> Okay, just pushed my first chunk of work on `unstable-flag`. This should be able to be released without breaking semver, with the concession that setting any unstable flag (whether...