Skip Menu |

This queue is for tickets about the Text-Match-FastAlternatives CPAN distribution.

Report information
The Basics
Id: 86386
Status: new
Priority: 0/
Queue: Text-Match-FastAlternatives

People
Owner: Nobody in particular
Requestors: rglee32 [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: (no value)
Fixed in: (no value)



Subject: Failure to match overlapping substrings
Consider this short program: ### my $m = Text::Match::FastAlternatives->new('abc', 'b'); assert ($words->match('dba') == $m->match('aba')); exit; ### The assert fails when $words->match('aba') wrongly returns false. This is because 'ab' is not an accepting state, however it should be as its failure state 'a' is accepting.