- java.lang.Object
-
- net.automatalib.modelchecking.impl.AbstractLasso<I,Word<O>>
-
- net.automatalib.modelchecking.impl.MealyLassoImpl<I,O>
-
- Type Parameters:
I
- the input typeO
- the output type
- All Implemented Interfaces:
Iterable<Integer>
,Automaton<Integer,I,Integer>
,DetOutputAutomaton<Integer,I,Integer,Word<O>>
,DetSuffixOutputAutomaton<Integer,I,Integer,Word<O>>
,FiniteRepresentation
,InputAlphabetHolder<I>
,Output<I,Word<O>>
,OutputAutomaton<Integer,I,Integer,Word<O>>
,SuffixOutput<I,Word<O>>
,TransitionOutput<Integer,O>
,DeterministicAutomaton<Integer,I,Integer>
,SimpleAutomaton<Integer,I>
,SimpleDeterministicAutomaton<Integer,I>
,MealyMachine<Integer,I,Integer,O>
,TransitionOutputAutomaton<Integer,I,Integer,O>
,UniversalAutomaton<Integer,I,Integer,Void,O>
,UniversalDeterministicAutomaton<Integer,I,Integer,Void,O>
,Lasso<I,Word<O>>
,Lasso.MealyLasso<I,O>
,DeterministicTransitionSystem<Integer,I,Integer>
,DeterministicOutputTS<Integer,I,Integer,O>
,DeterministicTransitionOutputTS<Integer,I,Integer,O>
,MealyTransitionSystem<Integer,I,Integer,O>
,SimpleDTS<Integer,I>
,SimpleTS<Integer,I>
,TransitionSystem<Integer,I,Integer>
,UniversalDTS<Integer,I,Integer,Void,O>
,UniversalTransitionSystem<Integer,I,Integer,Void,O>
public class MealyLassoImpl<I,O> extends AbstractLasso<I,Word<O>> implements Lasso.MealyLasso<I,O>
A MealyLasso is a lasso forMealyMachine
s.
-
-
Nested Class Summary
-
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.modelchecking.Lasso
Lasso.DFALasso<I>, Lasso.MealyLasso<I,O>
-
Nested classes/interfaces inherited from interface net.automatalib.automaton.transducer.MealyMachine
MealyMachine.MealyGraphView<S,I,T,O,A extends MealyMachine<S,I,T,O>>
-
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>
-
-
Field Summary
-
Fields inherited from class net.automatalib.modelchecking.impl.AbstractLasso
NO_LASSO
-
-
Constructor Summary
Constructors Constructor Description MealyLassoImpl(DetOutputAutomaton<?,I,?,Word<O>> automaton, Collection<? extends I> inputs, int unfoldTimes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Word<O>
computeOutput(Iterable<? extends I> input)
Integer
getSuccessor(Integer transition)
Retrieves the successor state of a given transition.O
getTransitionOutput(Integer transition)
-
Methods inherited from class net.automatalib.modelchecking.impl.AbstractLasso
getAutomaton, getInitialState, getInputAlphabet, getLoop, getLoopBeginIndices, getOutput, getPrefix, getStates, getSuccessor, getTransition, getUnfolds, getWord
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
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
computeSuffixOutput
-
Methods inherited from interface net.automatalib.automaton.concept.InputAlphabetHolder
getInputAlphabet
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface net.automatalib.modelchecking.Lasso
getAutomaton, getLoop, getLoopBeginIndices, getOutput, getPrefix, getUnfolds, getWord
-
Methods inherited from interface net.automatalib.automaton.transducer.MealyMachine
transitionGraphView
-
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.transducer.TransitionOutputAutomaton
computeStateOutput
-
Methods inherited from interface net.automatalib.automaton.UniversalDeterministicAutomaton
fullIntAbstraction, fullIntAbstraction, stateIntAbstraction
-
Methods inherited from interface net.automatalib.ts.UniversalDTS
getTransitionProperty
-
-
-
-
Constructor Detail
-
MealyLassoImpl
public MealyLassoImpl(DetOutputAutomaton<?,I,?,Word<O>> automaton, Collection<? extends I> inputs, int unfoldTimes)
-
-
Method Detail
-
getTransitionOutput
public O getTransitionOutput(Integer transition)
- Specified by:
getTransitionOutput
in interfaceTransitionOutput<I,O>
-
getSuccessor
public Integer getSuccessor(Integer transition)
Description copied from interface:TransitionSystem
Retrieves the successor state of a given transition.- Specified by:
getSuccessor
in interfaceTransitionSystem<Integer,I,Integer>
- Parameters:
transition
- the transition.- Returns:
- the successor state.
-
computeOutput
public Word<O> computeOutput(Iterable<? extends I> input)
- Specified by:
computeOutput
in interfaceDetSuffixOutputAutomaton<Integer,I,Integer,Word<O>>
- Specified by:
computeOutput
in interfaceOutput<I,O>
- Specified by:
computeOutput
in interfaceSuffixOutput<I,O>
-
-