Package de.learnlib.algorithm.aaar
Class TranslatingDFA<S,AI,CI>
- java.lang.Object
-
- de.learnlib.algorithm.aaar.TranslatingDFA<S,AI,CI>
-
- All Implemented Interfaces:
Iterable<S>
,Automaton<S,CI,S>
,DetOutputAutomaton<S,CI,S,Boolean>
,DetSuffixOutputAutomaton<S,CI,S,Boolean>
,FiniteRepresentation
,Output<CI,Boolean>
,OutputAutomaton<S,CI,S,Boolean>
,SuffixOutput<CI,Boolean>
,DeterministicAutomaton<S,CI,S>
,DFA<S,CI>
,FiniteStateAcceptor<S,CI>
,NFA<S,CI>
,SimpleAutomaton<S,CI>
,SimpleDeterministicAutomaton<S,CI>
,UniversalAutomaton<S,CI,S,Boolean,Void>
,UniversalDeterministicAutomaton<S,CI,S,Boolean,Void>
,AcceptorTS<S,CI>
,DeterministicAcceptorTS<S,CI>
,DeterministicTransitionSystem<S,CI,S>
,SimpleDTS<S,CI>
,SimpleTS<S,CI>
,TransitionSystem<S,CI,S>
,UniversalDTS<S,CI,S,Boolean,Void>
,UniversalTransitionSystem<S,CI,S,Boolean,Void>
public class TranslatingDFA<S,AI,CI> extends Object implements DFA<S,CI>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.automatalib.automaton.DeterministicAutomaton
DeterministicAutomaton.FullIntAbstraction<T extends Object>, DeterministicAutomaton.IntAbstraction<T extends Object>, DeterministicAutomaton.StateIntAbstraction<I extends Object,T extends Object>
-
Nested classes/interfaces inherited from interface net.automatalib.automaton.fsa.FiniteStateAcceptor
FiniteStateAcceptor.FSAGraphView<S extends Object,I extends Object,A extends FiniteStateAcceptor<S,I>>
-
Nested classes/interfaces inherited from interface net.automatalib.automaton.UniversalDeterministicAutomaton
UniversalDeterministicAutomaton.FullIntAbstraction<T extends Object,SP extends Object,TP extends Object>, UniversalDeterministicAutomaton.IntAbstraction<T extends Object,SP extends Object,TP extends Object>, UniversalDeterministicAutomaton.StateIntAbstraction<I extends Object,T extends Object,SP extends Object,TP extends Object>
-
-
Field Summary
-
Fields inherited from interface net.automatalib.automaton.fsa.FiniteStateAcceptor
STATE_PROPERTIES, TRANSITION_PROPERTIES
-
-
Constructor Summary
Constructors Constructor Description TranslatingDFA(DFA<S,CI> delegate, Function<CI,? extends AbstractAbstractionTree<AI,CI,?>> treeFetcher)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable S
getInitialState()
Collection<S>
getStates()
@Nullable S
getTransition(S s, CI i)
boolean
isAccepting(S s)
-
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.acceptor.AcceptorTS
getStateProperty, getSuccessor, getTransitionProperty
-
Methods inherited from interface net.automatalib.ts.DeterministicTransitionSystem
getSuccessor, getSuccessors, getTransitions
-
Methods inherited from interface net.automatalib.automaton.fsa.DFA
accepts, computeOutput, computeStateOutput, computeSuffixOutput, isAccepting
-
Methods inherited from interface net.automatalib.automaton.fsa.FiniteStateAcceptor
transitionGraphView
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface net.automatalib.automaton.simple.SimpleAutomaton
createDynamicStateMapping, createStaticStateMapping, iterator, size, stateIDs
-
Methods inherited from interface net.automatalib.ts.simple.SimpleDTS
getInitialStates, getState, getStates, getSuccessor, getSuccessors, getSuccessors
-
Methods inherited from interface net.automatalib.ts.simple.SimpleTS
getSuccessors
-
Methods inherited from interface net.automatalib.ts.TransitionSystem
powersetView
-
Methods inherited from interface net.automatalib.automaton.UniversalDeterministicAutomaton
fullIntAbstraction, fullIntAbstraction, stateIntAbstraction
-
Methods inherited from interface net.automatalib.ts.UniversalDTS
getTransitionProperty
-
-
-
-
Method Detail
-
getStates
public Collection<S> getStates()
- Specified by:
getStates
in interfaceSimpleAutomaton<S,AI>
-
getTransition
public @Nullable S getTransition(S s, CI i)
- Specified by:
getTransition
in interfaceDeterministicTransitionSystem<S,AI,CI>
-
isAccepting
public boolean isAccepting(S s)
- Specified by:
isAccepting
in interfaceAcceptorTS<S,AI>
-
getInitialState
public @Nullable S getInitialState()
- Specified by:
getInitialState
in interfaceSimpleDTS<S,AI>
-
-