chowells79
chowells79
I was working on AoC problem (https://adventofcode.com/2021/day/10) recently and saw that recognizing whether an input matches a grammar was part of it. (I ended up going a different direction to...
Even if the non-threaded runtime doesn't provide tools to implement it as efficiently, it's still possible to implement registerDelay with correct semantics. That would be a lot more pleasant to...
Sorry these are all in one pull request, but.. It's a lot easier to deal with that way. These changes do the following: - Update to version 4.0 of edwardk's...
Main.hs: ```haskell import Text.Earley import Control.Applicative.Combinators main :: IO () main = print $ fullParses (parser grammar) "a;a" grammar :: Grammar r (Prod r () Char String) grammar = return...