private RunAutomaton runauto = null;
public CompiledAutomaton( String rhsPattern ) {
RegExp regexpr = new dk.brics.automaton.RegExp(rhsPattern, RegExp.NONE);
Automaton auto = regexpr.toAutomaton();
this.runauto = new RunAutomaton(auto, true);
}
@Override
public boolean match(String lhs, String rhs) {