03-30-2012, 10:54 PM
I'm finding some weird features when trying to optimize the rules.
Take 1b34b9287ad35d9ec421b26fd3ad9456:RAGNAROK for example.
The word ragnarok is in the dictionnary but not ragnarok1.
I tested the following rules to see if they find the RAGNAROK
It seems that u is not processed if @1 can't find a 1. If you add the 1 at the beginning with ^1, @1 is happy, if you do it at the end with $1 it isn't. If you add it at the end with i81, @1 is happy again.
It seems as if some rules have precedence of other. Maybe because they are applied in a fixed order? Is this wanted, and if yes, is this order documented ?
Take 1b34b9287ad35d9ec421b26fd3ad9456:RAGNAROK for example.
The word ragnarok is in the dictionnary but not ragnarok1.
I tested the following rules to see if they find the RAGNAROK
Code:
u - yes
@1u - no
^1@1u - yes
$1@1u - no
i81@1u - yes
It seems that u is not processed if @1 can't find a 1. If you add the 1 at the beginning with ^1, @1 is happy, if you do it at the end with $1 it isn't. If you add it at the end with i81, @1 is happy again.
It seems as if some rules have precedence of other. Maybe because they are applied in a fixed order? Is this wanted, and if yes, is this order documented ?