-
I've extracted the files from Nier Replicant ver.1.22 using this tool to get my hands on "Ashes of Dreams" and noticed that the old versions of these songs are in the game files. I haven't yet had the…
-
The match generation algorithm for `RegexOptions.NonBacktracking` uses a third pass over the input whenever the pattern has subcaptures and the user call need to know them. This third pass is an NFA s…
-
![PDA ](https://user-images.githubusercontent.com/113490860/191174738-180f59f9-70f9-4540-b7de-a40a3067f05a.jpg)
-
Hello,
First of all, thank you so much for sharing Whiiif.
I'm running into some trouble getting the software up and running- hopefully I am just missing something simple. I'm using Debian 10.4…
-
Currently pool is a WeakRefDict. Wondering if it can be made into something else to allow for more operations to be more efficient e.g. sorting/grouping. A B-tree perhaps?
-
We have a regex benchmark merged in #224. But there are a lot of variations between regex implementations. Even the `regex` crate alone has several tunable parameters that I'd expect to have a signifi…
-
Hi,
I got `UNSAT` verdicts on the following queries from the SMT-LIB repository (`non-incremental/QF-LIA`):
- `20180326-Bromberger/more_slacked/CAV_2009_benchmarks/smt/45-vars/v45_problem_2__003.s…
-
This was partly discussed in an email, and is also related to #3.
The question here is whether we want to support extra and optional properties for states or transitions. For instance it could be us…
-
This grammar ``Exp. Exp ::= Ident "'" ;`` generates a parser that correctly parses ``x '``, but not ``x'`` for some reason. I've played with other characters, including other quotation symbols, such a…
-
Not an issue, but rather a question.
Is there any formal representation, like BNF, of parsing grammar used in `dateutil.parser` module? Or any description of parsing method applied (i.e. LL, LR, et…