Uses of Class
org.jacop.constraints.regular.RegState
Packages that use RegState
-
Uses of RegState in org.jacop.constraints.regular
Subclasses of RegState in org.jacop.constraints.regularModifier and TypeClassDescriptionclassIt is a state representation which uses a domain representation to represent all integers which can transition from this state to the given successor state.classIt is an implementation of the Regular state which uses a separate successor for each value.Fields in org.jacop.constraints.regular declared as RegStateModifier and TypeFieldDescriptionRegEdge.destThe destination state.RegEdge.orgThe origin state.private RegState[][]Regular.stateLevelsStores the states of all graph levels.RegState[]RegState.successorsIt specifies the list of successor states for this state.(package private) RegState[]Regular.touchedStatesMethods in org.jacop.constraints.regular that return RegStateModifier and TypeMethodDescriptionRegular.getState(int level, int id) Find the state with the corresponding id.Methods in org.jacop.constraints.regular with parameters of type RegStateModifier and TypeMethodDescriptionprivate voidRegular.addTouchedState(RegState s) abstract voidRegState.addTransition(RegState suc, 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, Integer val) voidRegStateInt.addTransition(RegState suc, 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