use of com.yahoo.prelude.semantics.engine.Choicepoint in project vespa by vespa-engine.
the class SequenceCondition method doesMatch.
public boolean doesMatch(RuleEvaluation e) {
Choicepoint choicepoint = e.getChoicepoint(this, true);
choicepoint.updateState();
boolean matches = allSubConditionsMatches(e);
if (!matches)
choicepoint.backtrack();
return matches;
}
Aggregations