History log of /relibc/posix-regex/src/ (Results 1 – 20 of 20)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
0d996efe14-Nov-2018 jD91mZM2 <me@krake.one>

Fix group 0 with inexact matches

51369b2514-Nov-2018 jD91mZM2 <me@krake.one>

Stabilize the number of groups being returned

bf7d93bb14-Nov-2018 jD91mZM2 <me@krake.one>

Fix issue with nested repeated groups

eccf844708-Nov-2018 Jeremy Soller <jeremy@system76.com>

Fix path to BTreeMap on nightly

cc3599c305-Oct-2018 jD91mZM2 <me@krake.one>

Fix compilation error of tests

eefcccb404-Oct-2018 jD91mZM2 <me@krake.one>

More last minute interface changes

e88e0d7704-Oct-2018 jD91mZM2 <me@krake.one>

Fix no_std

8f75249103-Oct-2018 jD91mZM2 <me@krake.one>

Finish up & fix huge last minute bug :|

9efe1bdd02-Oct-2018 jD91mZM2 <me@krake.one>

Benchmarks

2ee1054b02-Oct-2018 jD91mZM2 <me@krake.one>

Fix no_std build

4014cb7b02-Oct-2018 jD91mZM2 <me@krake.one>

Use less RCs in matcher

ca7fee9102-Oct-2018 jD91mZM2 <me@krake.one>

Clean up matcher

c8f82a1702-Oct-2018 jD91mZM2 <me@krake.one>

Word boundaries

5a48850302-Oct-2018 jD91mZM2 <me@krake.one>

Support start/end

d0d2618701-Oct-2018 jD91mZM2 <me@krake.one>

Return group offsets

8c5e7d9d01-Oct-2018 jD91mZM2 <me@krake.one>

Fix offset tests

738ff14601-Oct-2018 jD91mZM2 <me@krake.one>

Fix no_std

2fb23e3901-Oct-2018 jD91mZM2 <me@krake.one>

Initial support for groups

I had to sell my soul to satan for this. Don't mind the reference
counters... They were a part of the deal.

e2ed625730-Sep-2018 jD91mZM2 <me@krake.one>

Rewrite matcher

The idea is that it'll keep a list of all possible branches, exploring
each one. Then it keeps feeding them, until either all branches end up
dead ends (counts as a failure), or one

Rewrite matcher

The idea is that it'll keep a list of all possible branches, exploring
each one. Then it keeps feeding them, until either all branches end up
dead ends (counts as a failure), or one of the branches got explored all
the way until the end (counts as a success).

Thanks to @tbodt for hinting me how to do this! It's hopefully going to
make implementing groups easier too :)

This may or may not be called NFA or DFA or something cool like that.

show more ...

7648b78f30-Sep-2018 jD91mZM2 <me@krake.one>

Initial commit