Uses of Interface
net.automatalib.automaton.transducer.MutableMooreMachine
-
Packages that use MutableMooreMachine Package Description net.automatalib.automaton.transducer net.automatalib.serialization.dot net.automatalib.util.automaton.builder -
-
Uses of MutableMooreMachine in net.automatalib.automaton.transducer
Classes in net.automatalib.automaton.transducer that implement MutableMooreMachine Modifier and Type Class Description class
CompactMoore<I,O>
class
FastMoore<I,O>
A fast implementation of a Moore automaton. -
Uses of MutableMooreMachine in net.automatalib.serialization.dot
Methods in net.automatalib.serialization.dot with type parameters of type MutableMooreMachine Modifier and Type Method Description static <S,I,O,A extends MutableMooreMachine<S,I,?,O>>
DOTInputModelDeserializer<S,I,A>DOTParsers. moore(AutomatonCreator<A,I> creator, Function<Map<String,String>,O> nodeParser, Function<Map<String,String>,I> edgeParser)
Parser forMooreMachine
s with a custom automaton instance and custom node and edge attributes.static <S,I,O,A extends MutableMooreMachine<S,I,?,O>>
DOTInputModelDeserializer<S,I,A>DOTParsers. moore(AutomatonCreator<A,I> creator, Function<Map<String,String>,O> nodeParser, Function<Map<String,String>,I> edgeParser, String initialNodeId)
Parser forMooreMachine
s with a custom automaton instance, custom node and edge attributes and a custom label for the initial node.static <S,I,O,A extends MutableMooreMachine<S,I,?,O>>
DOTInputModelDeserializer<S,I,A>DOTParsers. moore(AutomatonCreator<A,I> creator, Function<Map<String,String>,O> nodeParser, Function<Map<String,String>,I> edgeParser, String initialNodeId, boolean fakeInitialNodeId)
Parser forMooreMachine
s with a custom automaton instance, custom node and edge attributes, a custom label for the initial node and a flag whether the initial node is artificial. -
Uses of MutableMooreMachine in net.automatalib.util.automaton.builder
Classes in net.automatalib.util.automaton.builder with type parameters of type MutableMooreMachine Modifier and Type Class Description class
MooreBuilder<S,I,T,O,A extends MutableMooreMachine<S,? super I,T,? super O>>
class
MooreBuilderImpl<S,I,T,O,A extends MutableMooreMachine<S,? super I,T,? super O>>
Methods in net.automatalib.util.automaton.builder with type parameters of type MutableMooreMachine Modifier and Type Method Description static <S,I,T,O,A extends MutableMooreMachine<S,? super I,T,? super O>>
MooreBuilder<S,I,T,O,A>AutomatonBuilders. forMoore(A moore)
-