Uses of Interface
net.automatalib.automaton.Automaton
-
Packages that use Automaton Package Description net.automatalib.automaton This package (including sub-packages) contains the basic classes concerning automata.net.automatalib.automaton.concept net.automatalib.automaton.fsa net.automatalib.automaton.graph net.automatalib.automaton.transducer net.automatalib.automaton.transducer.probabilistic net.automatalib.automaton.visualization net.automatalib.modelchecking net.automatalib.ts This package (including sub-packages) contains the basic classes concerning transition systems.net.automatalib.ts.modal -
-
Uses of Automaton in net.automatalib.automaton
Subinterfaces of Automaton in net.automatalib.automaton Modifier and Type Interface Description interface
DeterministicAutomaton<S,I,T>
Basic interface for a deterministic automaton.interface
FiniteAlphabetAutomaton<S,I,T>
interface
MutableAutomaton<S,I,T,SP,TP>
A mutable automaton.interface
MutableDeterministic<S,I,T,SP,TP>
Interface for a mutable deterministic automaton.interface
ShrinkableAutomaton<S,I,T,SP,TP>
A mutable automaton that also supports destructive modifications, i.e., removal of states and transitions.interface
ShrinkableDeterministic<S,I,T,SP,TP>
A mutable deterministic automaton that also supports destructive operations, i.e., removal of states and transitions.interface
UniversalAutomaton<S,I,T,SP,TP>
A universal automaton is a generalized representation of automata, with unified access to the properties of states and transitions.interface
UniversalDeterministicAutomaton<S,I,T,SP,TP>
ADeterministicAutomaton
with state and transition properties.interface
UniversalFiniteAlphabetAutomaton<S,I,T,SP,TP>
-
Uses of Automaton in net.automatalib.automaton.concept
Subinterfaces of Automaton in net.automatalib.automaton.concept Modifier and Type Interface Description interface
DetOutputAutomaton<S,I,T,D>
An automaton which deterministically produces an output for an input word.interface
DetSuffixOutputAutomaton<S,I,T,D>
interface
OutputAutomaton<S,I,T,D>
-
Uses of Automaton in net.automatalib.automaton.fsa
Subinterfaces of Automaton in net.automatalib.automaton.fsa Modifier and Type Interface Description interface
DFA<S,I>
Deterministic finite state acceptor.interface
FiniteStateAcceptor<S,I>
FiniteStateAcceptor
s accept regular languages.interface
MutableDFA<S,I>
interface
MutableFSA<S,I>
interface
MutableNFA<S,I>
interface
NFA<S,I>
Nondeterministic finite state acceptor. -
Uses of Automaton in net.automatalib.automaton.graph
Classes in net.automatalib.automaton.graph with type parameters of type Automaton Modifier and Type Class Description class
AbstractAutomatonGraphView<S,A extends Automaton<S,?,?>,E>
class
AutomatonGraphView<S,I,T,A extends Automaton<S,I,T>>
Fields in net.automatalib.automaton.graph declared as Automaton Modifier and Type Field Description protected A
AbstractAutomatonGraphView. automaton
Methods in net.automatalib.automaton.graph with parameters of type Automaton Modifier and Type Method Description static <S,I,T>
Collection<TransitionEdge<I,T>>AutomatonGraphView. createTransitionEdges(Automaton<S,I,T> automaton, Collection<? extends I> inputs, S state)
-
Uses of Automaton in net.automatalib.automaton.transducer
Subinterfaces of Automaton in net.automatalib.automaton.transducer Modifier and Type Interface Description interface
MealyMachine<S,I,T,O>
interface
MooreMachine<S,I,T,O>
interface
MutableMealyMachine<S,I,T,O>
interface
MutableMooreMachine<S,I,T,O>
interface
MutableSubsequentialTransducer<S,I,T,O>
Amutable
extension of aSubsequentialTransducer
.interface
StateLocalInputMealyMachine<S,I,T,O>
interface
StateOutputAutomaton<S,I,T,O>
interface
SubsequentialTransducer<S,I,T,O>
A subsequential transducer (or SST) is anDeterministicOutputTS
whose state and transition properties are output-words
.interface
TransitionOutputAutomaton<S,I,T,O>
-
Uses of Automaton in net.automatalib.automaton.transducer.probabilistic
Subinterfaces of Automaton in net.automatalib.automaton.transducer.probabilistic Modifier and Type Interface Description interface
MutableProbabilisticMealy<S,I,T,O>
interface
ProbabilisticMealyMachine<S,I,T,O>
-
Uses of Automaton in net.automatalib.automaton.visualization
Classes in net.automatalib.automaton.visualization with type parameters of type Automaton Modifier and Type Class Description class
AutomatonVisualizationHelper<S,I,T,A extends Automaton<S,I,T>>
Fields in net.automatalib.automaton.visualization declared as Automaton Modifier and Type Field Description protected A
AutomatonVisualizationHelper. automaton
-
Uses of Automaton in net.automatalib.modelchecking
Subinterfaces of Automaton in net.automatalib.modelchecking Modifier and Type Interface Description interface
Lasso<I,D>
A lasso is a single infinite word.static interface
Lasso.DFALasso<I>
A DFALasso is a lasso forDFA
s.static interface
Lasso.MealyLasso<I,O>
A MealyLasso is a lasso forMealyMachine
s. -
Uses of Automaton in net.automatalib.ts
Subinterfaces of Automaton in net.automatalib.ts Modifier and Type Interface Description interface
FiniteKTS<S,I,T,AP>
A finite Kripke Transition System combines the properties of afinite transition system
and aKripkeInterpretation
. -
Uses of Automaton in net.automatalib.ts.modal
Subinterfaces of Automaton in net.automatalib.ts.modal Modifier and Type Interface Description interface
ModalTransitionSystem<S,I,T,TP extends ModalEdgeProperty>
A modal transition system is aUniversalAutomaton
in which transitions can be marked asmay
ormust
edges.interface
MutableModalTransitionSystem<S,I,T,TP extends MutableModalEdgeProperty>
A mutable version ofModalTransitionSystem
that allows to add states and transitions.
-