Uses of Class
net.automatalib.util.partitionrefinement.Block
-
Packages that use Block Package Description net.automatalib.util.partitionrefinement -
-
Uses of Block in net.automatalib.util.partitionrefinement
Fields in net.automatalib.util.partitionrefinement declared as Block Modifier and Type Field Description Block[]PaigeTarjan. blockForStateThe array mapping states (in the range between0andPaigeTarjan.numStates) to their containing block.@Nullable BlockBlock. nextBlockprotected @Nullable BlockBlock. nextInWorklistprotected @Nullable BlockBlock. nextTouchedMethods in net.automatalib.util.partitionrefinement that return Block Modifier and Type Method Description BlockPaigeTarjan. createBlock()Creates a new block.Block[]PaigeTarjan. createBlockForStateMap()Creates thePaigeTarjan.blockForStatemapping from the blocks in the block list, and the contents of thePaigeTarjan.blockDataarray.BlockPaigeTarjan. getBlockForState(int id)Retrieves the corresponding block for a given state (ID).@Nullable BlockBlock. split(int newId)Splits this block, if applicable.Methods in net.automatalib.util.partitionrefinement that return types with arguments of type Block Modifier and Type Method Description Iterable<Block>PaigeTarjan. blockList()Retrieves anIterablethat provides the iterator returned byPaigeTarjan.blockListIterator().Iterator<Block>PaigeTarjan. blockListIterator()Retrieves an iterator for iterating over all blocks in the block list.Methods in net.automatalib.util.partitionrefinement with parameters of type Block Modifier and Type Method Description intPaigeTarjan. getRepresentative(Block b)Retrieves a representative state from the given block.voidPaigeTarjan. setBlockForState(Block[] blockForState)PrimitiveIterator.OfIntPaigeTarjan. statesInBlockIterator(Block b)Retrieves an iterator for the contents of the given block.Spliterator.OfIntPaigeTarjan. statesInBlockSpliterator(Block b)Retrieves a spliterator for the contents of the given block.Constructors in net.automatalib.util.partitionrefinement with parameters of type Block Constructor Description Block(int low, int high, int id, @Nullable Block next)Constructor.
-