Uses of Class
org.jacop.constraints.regular.RegState
-
Packages that use RegState Package Description org.jacop.constraints.regular -
-
Uses of RegState in org.jacop.constraints.regular
Subclasses of RegState in org.jacop.constraints.regular Modifier and Type Class Description classRegStateDomIt is a state representation which uses a domain representation to represent all integers which can transition from this state to the given successor state.classRegStateIntIt is an implementation of the Regular state which uses a separate successor for each value.Fields in org.jacop.constraints.regular declared as RegState Modifier and Type Field Description RegStateRegEdge. destThe destination state.RegStateRegEdge. orgThe origin state.private RegState[][]Regular. stateLevelsStores the states of all graph levelsRegState[]RegState. successorsIt specifies the list of successor states for this state.(package private) RegState[]Regular. touchedStatesMethods in org.jacop.constraints.regular that return RegState Modifier and Type Method Description RegStateRegular. getState(int level, int id)Find the state with the corresponding id.Methods in org.jacop.constraints.regular with parameters of type RegState Modifier and Type Method Description private voidRegular. addTouchedState(RegState s)abstract voidRegState. addTransition(RegState suc, java.lang.Integer val)It specifies that for a given value an automata will move from the current state to the successor state.voidRegStateDom. addTransition(RegState suc, java.lang.Integer val)voidRegStateInt. addTransition(RegState suc, java.lang.Integer val)abstract voidRegState. addTransitions(RegState suc, IntervalDomain val)It specifies that for a given values from an interval an automata will move from the current state to the successor state.voidRegStateDom. addTransitions(RegState suc, IntervalDomain val)voidRegStateInt. addTransitions(RegState suc, IntervalDomain val)Constructors in org.jacop.constraints.regular with parameters of type RegState Constructor Description RegEdge(RegState org, RegState dest)The constructor which creates an edge.
-