Uses of Class
de.learnlib.filter.reuse.tree.BoundedDeque.AccessPolicy
-
Packages that use BoundedDeque.AccessPolicy Package Description de.learnlib.filter.reuse de.learnlib.filter.reuse.tree -
-
Uses of BoundedDeque.AccessPolicy in de.learnlib.filter.reuse
Methods in de.learnlib.filter.reuse that return BoundedDeque.AccessPolicy Modifier and Type Method Description static BoundedDeque.AccessPolicy
BuilderDefaults. accessPolicy()
Methods in de.learnlib.filter.reuse with parameters of type BoundedDeque.AccessPolicy Modifier and Type Method Description ReuseOracleBuilder<S,I,O>
ReuseOracleBuilder. withAccessPolicy(BoundedDeque.AccessPolicy accessPolicy)
Sets the new value for the parameteraccessPolicy
and returnsthis
builder instance.Constructors in de.learnlib.filter.reuse with parameters of type BoundedDeque.AccessPolicy Constructor Description ReuseOracle(net.automatalib.alphabet.Alphabet<I> alphabet, Supplier<? extends ReuseCapableOracle<S,I,O>> oracleSupplier, boolean enabledSystemStateInvalidation, SystemStateHandler<S> systemStateHandler, Set<I> invariantInputs, Set<O> failureOutputs, int maxSystemStates, BoundedDeque.AccessPolicy accessPolicy, BoundedDeque.EvictPolicy evictPolicy)
Default constructor. -
Uses of BoundedDeque.AccessPolicy in de.learnlib.filter.reuse.tree
Methods in de.learnlib.filter.reuse.tree that return BoundedDeque.AccessPolicy Modifier and Type Method Description static BoundedDeque.AccessPolicy
BoundedDeque.AccessPolicy. valueOf(String name)
Returns the enum constant of this type with the specified name.static BoundedDeque.AccessPolicy[]
BoundedDeque.AccessPolicy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.learnlib.filter.reuse.tree with parameters of type BoundedDeque.AccessPolicy Modifier and Type Method Description ReuseTreeBuilder<S,I,O>
ReuseTreeBuilder. withAccessPolicy(BoundedDeque.AccessPolicy accessPolicy)
Sets the new value for the parameteraccessPolicy
and returnsthis
builder instance.Constructors in de.learnlib.filter.reuse.tree with parameters of type BoundedDeque.AccessPolicy Constructor Description BoundedDeque(int capacity, BoundedDeque.AccessPolicy accessPolicy, BoundedDeque.EvictPolicy evictPolicy)
Constructor.BoundedDeque(BoundedDeque.AccessPolicy accessPolicy)
Constructor.ReuseNode(int id, int alphabetSize, int maxSystemStates, BoundedDeque.AccessPolicy accessPolicy, BoundedDeque.EvictPolicy evictPolicy)
ReuseTree(net.automatalib.alphabet.Alphabet<I> alphabet, boolean enabledSystemStateInvalidation, SystemStateHandler<S> systemStateHandler, Set<I> invariantInputs, Set<O> failureOutputs, int maxSystemStates, BoundedDeque.AccessPolicy accessPolicy, BoundedDeque.EvictPolicy evictPolicy)
-