Module net.automatalib.api
Interface ProbabilisticMealyMachine<S,I,T,O>
-
- All Superinterfaces:
Automaton<S,I,T>
,FiniteRepresentation
,Iterable<S>
,Probabilistic<T>
,SimpleAutomaton<S,I>
,SimpleTS<S,I>
,TransitionOutput<T,O>
,TransitionSystem<S,I,T>
,UniversalTransitionSystem<S,I,T,Void,ProbabilisticOutput<O>>
- All Known Subinterfaces:
MutableProbabilisticMealy<S,I,T,O>
- All Known Implementing Classes:
FastProbMealy
public interface ProbabilisticMealyMachine<S,I,T,O> extends Automaton<S,I,T>, TransitionOutput<T,O>, UniversalTransitionSystem<S,I,T,Void,ProbabilisticOutput<O>>, Probabilistic<T>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Void
getStateProperty(S state)
Retrieves the state property for the given state.default O
getTransitionOutput(T transition)
default float
getTransitionProbability(T transition)
-
Methods inherited from interface net.automatalib.automaton.Automaton
transitionGraphView
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface net.automatalib.automaton.simple.SimpleAutomaton
createDynamicStateMapping, createStaticStateMapping, getStates, iterator, size, stateIDs
-
Methods inherited from interface net.automatalib.ts.simple.SimpleTS
getInitialStates, getStates, getSuccessors
-
Methods inherited from interface net.automatalib.ts.TransitionSystem
getSuccessor, getSuccessors, getTransitions, powersetView
-
Methods inherited from interface net.automatalib.ts.UniversalTransitionSystem
getTransitionProperty
-
-
-
-
Method Detail
-
getStateProperty
default Void getStateProperty(S state)
Description copied from interface:UniversalTransitionSystem
Retrieves the state property for the given state.- Specified by:
getStateProperty
in interfaceUniversalTransitionSystem<S,I,T,Void,ProbabilisticOutput<O>>
- Parameters:
state
- the state.- Returns:
- the corresponding property.
-
getTransitionProbability
default float getTransitionProbability(T transition)
- Specified by:
getTransitionProbability
in interfaceProbabilistic<S>
-
getTransitionOutput
default O getTransitionOutput(T transition)
- Specified by:
getTransitionOutput
in interfaceTransitionOutput<S,I>
-
-