Class Choicepoint
java.lang.Object
com.yahoo.prelude.semantics.engine.Choicepoint
A choice point in an rule evaluation. A choicepoint is open if there are other choices to make at the point,
closed if there are no further choices. In addition it contains enough information to enable
the rule evaluation to backtrack to this point
- Author:
- bratseth
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classThe state of this choicepoint -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddTry()Registers that another try has been madevoidBacktrack to the evaluation state at the point where this choicepoint were instantiated.voidBacktracks the position only, not matchesvoidclose()Marks this choice point as closed (!Returns the condition which created this choice pointgetState()Returns the state of this choice pointbooleanisOpen()Returns wether there are (or may be) open choices to explore at this choicepoint yetinttryCount()Returns the number open tries made at this pointvoidUpdates the state of this choice point to the current state of its evaluation
-
Constructor Details
-
Choicepoint
-
-
Method Details
-
getCondition
Returns the condition which created this choice point -
isOpen
public boolean isOpen()Returns wether there are (or may be) open choices to explore at this choicepoint yet -
close
public void close()Marks this choice point as closed (!open) - there are no further choices to explore -
tryCount
public int tryCount()Returns the number open tries made at this point -
addTry
public void addTry()Registers that another try has been made -
backtrack
public void backtrack()Backtrack to the evaluation state at the point where this choicepoint were instantiated. -
backtrackPosition
public void backtrackPosition()Backtracks the position only, not matches -
updateState
public void updateState()Updates the state of this choice point to the current state of its evaluation -
getState
Returns the state of this choice point
-