Module de.learnlib.datastructure
Package de.learnlib.datastructure.pta
Class AbstractBlueFringePTA<S extends AbstractBlueFringePTAState<S,SP,TP>,SP,TP>
- java.lang.Object
-
- de.learnlib.datastructure.pta.BasePTA<S,SP,TP>
-
- de.learnlib.datastructure.pta.AbstractBlueFringePTA<S,SP,TP>
-
- All Implemented Interfaces:
Iterable<S>
,net.automatalib.automaton.Automaton<S,Integer,PTATransition<S>>
,net.automatalib.automaton.concept.FiniteRepresentation
,net.automatalib.automaton.concept.InputAlphabetHolder<Integer>
,net.automatalib.automaton.DeterministicAutomaton<S,Integer,PTATransition<S>>
,net.automatalib.automaton.FiniteAlphabetAutomaton<S,Integer,PTATransition<S>>
,net.automatalib.automaton.simple.SimpleAutomaton<S,Integer>
,net.automatalib.automaton.simple.SimpleDeterministicAutomaton<S,Integer>
,net.automatalib.automaton.UniversalAutomaton<S,Integer,PTATransition<S>,SP,TP>
,net.automatalib.automaton.UniversalDeterministicAutomaton<S,Integer,PTATransition<S>,SP,TP>
,net.automatalib.graph.concept.GraphViewable
,net.automatalib.ts.DeterministicTransitionSystem<S,Integer,PTATransition<S>>
,net.automatalib.ts.simple.SimpleDTS<S,Integer>
,net.automatalib.ts.simple.SimpleTS<S,Integer>
,net.automatalib.ts.TransitionSystem<S,Integer,PTATransition<S>>
,net.automatalib.ts.UniversalDTS<S,Integer,PTATransition<S>,SP,TP>
,net.automatalib.ts.UniversalTransitionSystem<S,Integer,PTATransition<S>,SP,TP>
- Direct Known Subclasses:
BlueFringePTA
public abstract class AbstractBlueFringePTA<S extends AbstractBlueFringePTAState<S,SP,TP>,SP,TP> extends BasePTA<S,SP,TP>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.automatalib.automaton.UniversalDeterministicAutomaton
net.automatalib.automaton.UniversalDeterministicAutomaton.FullIntAbstraction<T extends Object,SP extends Object,TP extends Object>, net.automatalib.automaton.UniversalDeterministicAutomaton.IntAbstraction<T extends Object,SP extends Object,TP extends Object>, net.automatalib.automaton.UniversalDeterministicAutomaton.StateIntAbstraction<I extends Object,T extends Object,SP extends Object,TP extends Object>
-
-
Constructor Summary
Constructors Constructor Description AbstractBlueFringePTA(int alphabetSize, S root)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @org.checkerframework.checker.index.qual.NonNegative int
getNumRedStates()
S
getRedState(@org.checkerframework.checker.index.qual.NonNegative int id)
List<S>
getRedStates()
protected net.automatalib.visualization.VisualizationHelper<S,net.automatalib.automaton.graph.TransitionEdge<Integer,PTATransition<S>>>
getVisualizationHelper()
void
init(Consumer<? super PTATransition<S>> newBlue)
void
promote(S qb, Consumer<? super PTATransition<S>> newBlue)
@Nullable RedBlueMerge<S,SP,TP>
tryMerge(S qr, S qb)
-
Methods inherited from class de.learnlib.datastructure.pta.BasePTA
addSample, addSampleWithStateProperties, addSampleWithTransitionProperties, getInitialState, getInputAlphabet, getOrCreateState, getRoot, getStateProperty, getStates, getSuccessor, getSuccessor, getTransition, getTransitionProperty, iterator, transitionGraphView
-
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.DeterministicTransitionSystem
getSuccessors, getTransitions, powersetView
-
Methods inherited from interface net.automatalib.automaton.FiniteAlphabetAutomaton
getTransitions, graphView, transitionGraphView
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface net.automatalib.automaton.simple.SimpleAutomaton
createDynamicStateMapping, createStaticStateMapping, size, stateIDs
-
Methods inherited from interface net.automatalib.ts.simple.SimpleDTS
getInitialStates, getState, getStates, getSuccessor, getSuccessors
-
-
-
-
Constructor Detail
-
AbstractBlueFringePTA
public AbstractBlueFringePTA(int alphabetSize, S root)
-
-
Method Detail
-
getRedState
public S getRedState(@org.checkerframework.checker.index.qual.NonNegative int id)
-
getNumRedStates
public @org.checkerframework.checker.index.qual.NonNegative int getNumRedStates()
-
init
public void init(Consumer<? super PTATransition<S>> newBlue)
-
promote
public void promote(S qb, Consumer<? super PTATransition<S>> newBlue)
-
getVisualizationHelper
protected net.automatalib.visualization.VisualizationHelper<S,net.automatalib.automaton.graph.TransitionEdge<Integer,PTATransition<S>>> getVisualizationHelper()
- Overrides:
getVisualizationHelper
in classBasePTA<S extends AbstractBlueFringePTAState<S,SP,TP>,SP,TP>
-
-