Handle regex qualifier incoherent with Xeger limit.
Useful when mixing greedy operator with small limit (ex: limit=5) and explicit qualifier like {12,16}.
Fix the issue #6 .
I do think it should not raise an assertion error, probably a warning log would be useful.
I think it's fine how you have it -- if you use {12,16} it doesn't violate the principle of least astonishment that it actually returns between 12 and 16.
Handle regex qualifier incoherent with Xeger limit. Useful when mixing greedy operator with small limit (ex: limit=5) and explicit qualifier like {12,16}. Fix the issue #6 .
I do think it should not raise an assertion error, probably a warning log would be useful.