Package net.automatalib.incremental.dfa
Class AbstractIncrementalDFABuilder<I>
- java.lang.Object
-
- net.automatalib.incremental.dfa.AbstractIncrementalDFABuilder<I>
-
- Type Parameters:
I- input symbol class
- All Implemented Interfaces:
SupportsGrowingAlphabet<I>,InputAlphabetHolder<I>,IncrementalDFABuilder<I>,IncrementalConstruction<DFA<?,I>,I>
- Direct Known Subclasses:
IncrementalDFADAGBuilder,IncrementalDFATreeBuilder,IncrementalPCDFADAGBuilder
public abstract class AbstractIncrementalDFABuilder<I> extends Object implements IncrementalDFABuilder<I>, InputAlphabetHolder<I>
Abstract base class forIncrementalDFABuilders. This class takes care of holding the input alphabet and its size.
-
-
Field Summary
Fields Modifier and Type Field Description protected intalphabetSizeprotected Alphabet<I>inputAlphabet
-
Constructor Summary
Constructors Constructor Description AbstractIncrementalDFABuilder(Alphabet<I> inputAlphabet)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAlphabetSymbol(I symbol)Alphabet<I>getInputAlphabet()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.automatalib.incremental.IncrementalConstruction
findSeparatingWord
-
Methods inherited from interface net.automatalib.incremental.dfa.IncrementalDFABuilder
asGraph, asTransitionSystem, hasDefinitiveInformation, insert, insert, lookup
-
-
-
-
Method Detail
-
getInputAlphabet
public Alphabet<I> getInputAlphabet()
- Specified by:
getInputAlphabetin interfaceInputAlphabetHolder<I>
-
addAlphabetSymbol
public void addAlphabetSymbol(I symbol)
- Specified by:
addAlphabetSymbolin interfaceSupportsGrowingAlphabet<I>
-
-