Module net.automatalib.api
Interface MealyMachine<S,I,T,O>
-
- All Superinterfaces:
Automaton<S,I,T>,DeterministicAutomaton<S,I,T>,DeterministicOutputTS<S,I,T,O>,DeterministicTransitionOutputTS<S,I,T,O>,DeterministicTransitionSystem<S,I,T>,DetOutputAutomaton<S,I,T,Word<O>>,DetSuffixOutputAutomaton<S,I,T,Word<O>>,FiniteRepresentation,Iterable<S>,MealyTransitionSystem<S,I,T,O>,Output<I,Word<O>>,OutputAutomaton<S,I,T,Word<O>>,SimpleAutomaton<S,I>,SimpleDeterministicAutomaton<S,I>,SimpleDTS<S,I>,SimpleTS<S,I>,SuffixOutput<I,Word<O>>,TransitionOutput<T,O>,TransitionOutputAutomaton<S,I,T,O>,TransitionSystem<S,I,T>,UniversalAutomaton<S,I,T,Void,O>,UniversalDeterministicAutomaton<S,I,T,Void,O>,UniversalDTS<S,I,T,Void,O>,UniversalTransitionSystem<S,I,T,Void,O>
- All Known Subinterfaces:
Lasso.MealyLasso<I,O>,MutableMealyMachine<S,I,T,O>,StateLocalInputMealyMachine<S,I,T,O>
- All Known Implementing Classes:
CompactMealy,FastMealy,MealyLassoImpl
public interface MealyMachine<S,I,T,O> extends UniversalDeterministicAutomaton<S,I,T,Void,O>, TransitionOutputAutomaton<S,I,T,O>, MealyTransitionSystem<S,I,T,O>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMealyMachine.MealyGraphView<S,I,T,O,A extends MealyMachine<S,I,T,O>>-
Nested classes/interfaces inherited from interface net.automatalib.automaton.DeterministicAutomaton
DeterministicAutomaton.FullIntAbstraction<T>, DeterministicAutomaton.IntAbstraction<T>, DeterministicAutomaton.StateIntAbstraction<I,T>
-
Nested classes/interfaces inherited from interface net.automatalib.automaton.UniversalDeterministicAutomaton
UniversalDeterministicAutomaton.FullIntAbstraction<T,SP,TP>, UniversalDeterministicAutomaton.IntAbstraction<T,SP,TP>, UniversalDeterministicAutomaton.StateIntAbstraction<I,T,SP,TP>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default UniversalGraph<S,TransitionEdge<I,T>,Void,TransitionEdge.Property<I,O>>transitionGraphView(Collection<? extends I> inputs)Obtains agraphview of the transition graph of this automaton, taking into account the specified input symbols.-
Methods inherited from interface net.automatalib.ts.output.DeterministicOutputTS
trace
-
Methods inherited from interface net.automatalib.ts.output.DeterministicTransitionOutputTS
getOutput, trace
-
Methods inherited from interface net.automatalib.ts.DeterministicTransitionSystem
getSuccessor, getSuccessors, getTransition, getTransitions, powersetView
-
Methods inherited from interface net.automatalib.automaton.concept.DetSuffixOutputAutomaton
computeOutput, computeSuffixOutput
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface net.automatalib.ts.output.MealyTransitionSystem
getStateProperty, getTransitionProperty
-
Methods inherited from interface net.automatalib.automaton.simple.SimpleAutomaton
createDynamicStateMapping, createStaticStateMapping, getStates, iterator, size, stateIDs
-
Methods inherited from interface net.automatalib.ts.simple.SimpleDTS
getInitialState, getInitialStates, getState, getStates, getSuccessor, getSuccessors
-
Methods inherited from interface net.automatalib.ts.simple.SimpleTS
getSuccessors
-
Methods inherited from interface net.automatalib.automaton.concept.TransitionOutput
getTransitionOutput
-
Methods inherited from interface net.automatalib.automaton.transducer.TransitionOutputAutomaton
computeStateOutput
-
Methods inherited from interface net.automatalib.ts.TransitionSystem
getSuccessor
-
Methods inherited from interface net.automatalib.automaton.UniversalDeterministicAutomaton
fullIntAbstraction, fullIntAbstraction, stateIntAbstraction
-
Methods inherited from interface net.automatalib.ts.UniversalDTS
getTransitionProperty
-
-
-
-
Method Detail
-
transitionGraphView
default UniversalGraph<S,TransitionEdge<I,T>,Void,TransitionEdge.Property<I,O>> transitionGraphView(Collection<? extends I> inputs)
Description copied from interface:AutomatonObtains agraphview of the transition graph of this automaton, taking into account the specified input symbols. The transitions are represented asTransitionEdges in the graph.- Specified by:
transitionGraphViewin interfaceAutomaton<S,I,T>- Specified by:
transitionGraphViewin interfaceUniversalAutomaton<S,I,T,Void,O>- Parameters:
inputs- the input symbols to consider- Returns:
- a graph view of the transition graph of this automaton for the given input symbols
-
-