[Issue 14504] Regex Optimizer doesn't merge equivalent threads.

2015-04-26 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14504

Dmitry Olshansky  changed:

   What|Removed |Added

 CC||dmitry.o...@gmail.com
   Assignee|nob...@puremagic.com|dmitry.o...@gmail.com

--


[Issue 14504] Regex Optimizer doesn't merge equivalent threads.

2015-11-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14504

--- Comment #1 from Guillaume Couture-Levesque  ---
Any word on getting this fixed?

--


[Issue 14504] Regex Optimizer doesn't merge equivalent threads.

2015-11-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14504

--- Comment #2 from Dmitry Olshansky  ---
(In reply to Guillaume Couture-Levesque from comment #1)
> Any word on getting this fixed?

Been exceedingly busy, forgot about this issue.
All in all I wanted to complete a big chunk of work 
On decode-less regex first then do a pass over issues.

Does this block you in any way? If so I could give it a shot
sometime during this week.

--


[Issue 14504] Regex Optimizer doesn't merge equivalent threads.

2015-11-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14504

--- Comment #3 from Guillaume Couture-Levesque  ---
No, not blocking, just wondering if there was an update. Good luck on your
other work.

--


[Issue 14504] Regex Optimizer doesn't merge equivalent threads.

2016-04-11 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14504

github-bugzi...@puremagic.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--


[Issue 14504] Regex Optimizer doesn't merge equivalent threads.

2016-04-11 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14504

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/0e7fc33abaac676290add738499ec46d9e4be8ab
Fix issue 14504 Regex Optimizer doesn't merge equivalent threads

We can be unprecise a bit by using a hash of table to represent a state of
optimizer thread, after all any collision will result in just a shorter prefix
search.

https://github.com/D-Programming-Language/phobos/commit/11ef8c4a11dfcd397b5ba6a6e62344cc429d7715
Merge pull request #4157 from DmitryOlshansky/issue14504

Fix issue 14504 Regex Optimizer doesn't merge equivalent threads

--