- java.lang.Object
-
- de.learnlib.datastructure.discriminationtree.model.AbstractDTNode<DSCR,O,D,N>
-
- de.learnlib.datastructure.discriminationtree.model.AbstractTemporaryIntrusiveDTNode<net.automatalib.word.Word<I>,D,TTTState<I,D>,IntrusiveList<TTTTransition<I,D>>,AbstractBaseDTNode<I,D>>
-
- de.learnlib.algorithm.ttt.base.AbstractBaseDTNode<I,Boolean>
-
- de.learnlib.algorithm.ttt.dfa.TTTDTNodeDFA<I>
-
- Type Parameters:
I
- input symbol type
- All Implemented Interfaces:
IntrusiveListEntry<AbstractBaseDTNode<I,Boolean>>
,net.automatalib.common.smartcollection.ElementReference
,net.automatalib.common.smartcollection.LinkedListEntry<AbstractBaseDTNode<I,Boolean>,IntrusiveListEntry<AbstractBaseDTNode<I,Boolean>>>
- Direct Known Subclasses:
PrefixTTTLearnerDFA.ExtDTNode
public class TTTDTNodeDFA<I> extends AbstractBaseDTNode<I,Boolean>
Binary discrimination tree node specialization.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class de.learnlib.datastructure.discriminationtree.model.AbstractDTNode
AbstractDTNode.SplitResult
-
-
Field Summary
-
Fields inherited from class de.learnlib.datastructure.discriminationtree.model.AbstractDTNode
children, data, depth, discriminator, parent, parentOutcome
-
-
Constructor Summary
Constructors Constructor Description TTTDTNodeDFA()
TTTDTNodeDFA(AbstractBaseDTNode<I,Boolean> parent, Boolean parentEdgeLabel)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected AbstractBaseDTNode<I,Boolean>
createChild(Boolean outcome, TTTState<I,Boolean> data)
protected Map<Boolean,AbstractBaseDTNode<I,Boolean>>
createChildMap()
-
Methods inherited from class de.learnlib.algorithm.ttt.base.AbstractBaseDTNode
anySubtreeState, getElement, getIncoming, subtreeNodesIterator, subtreeStates, subtreeStatesIterator
-
Methods inherited from class de.learnlib.datastructure.discriminationtree.model.AbstractTemporaryIntrusiveDTNode
anyChild, getNext, getPrev, getSplitData, isBlockRoot, isInner, isTemp, setChild, setNext, setPrev, setSplitData, setTemp
-
Methods inherited from class de.learnlib.datastructure.discriminationtree.model.AbstractDTNode
addChild, child, child, getChild, getChildEntries, getChildren, getData, getDepth, getDiscriminator, getParent, getParentOutcome, isLeaf, isRoot, replaceChildren, setData, setDiscriminator, split, split, split, subtreeLabel
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.learnlib.datastructure.list.IntrusiveListEntry
removeFromList
-
-
-
-
Constructor Detail
-
TTTDTNodeDFA
public TTTDTNodeDFA()
-
TTTDTNodeDFA
public TTTDTNodeDFA(AbstractBaseDTNode<I,Boolean> parent, Boolean parentEdgeLabel)
-
-
Method Detail
-
createChildMap
protected Map<Boolean,AbstractBaseDTNode<I,Boolean>> createChildMap()
- Specified by:
createChildMap
in classAbstractDTNode<net.automatalib.word.Word<I>,Boolean,TTTState<I,Boolean>,AbstractBaseDTNode<I,Boolean>>
-
createChild
protected AbstractBaseDTNode<I,Boolean> createChild(Boolean outcome, TTTState<I,Boolean> data)
- Specified by:
createChild
in classAbstractDTNode<net.automatalib.word.Word<I>,Boolean,TTTState<I,Boolean>,AbstractBaseDTNode<I,Boolean>>
-
-