Greedy => Possessive optimization
If you regex contains non colliding greedy cycle eg. [a-z]+[^a-z]+
the cycle(s) will be optimized into possessive one(s).
You can disable the optimization with macro CTRE_DISABLE_GREEDY_OPT.
If you regex contains non colliding greedy cycle eg. [a-z]+[^a-z]+
the cycle(s) will be optimized into possessive one(s).
You can disable the optimization with macro CTRE_DISABLE_GREEDY_OPT.