Uses of Class
de.learnlib.filter.reuse.tree.BoundedDeque.EvictPolicy
-
Packages that use BoundedDeque.EvictPolicy Package Description de.learnlib.filter.reuse de.learnlib.filter.reuse.tree -
-
Uses of BoundedDeque.EvictPolicy in de.learnlib.filter.reuse
Methods in de.learnlib.filter.reuse that return BoundedDeque.EvictPolicy Modifier and Type Method Description static BoundedDeque.EvictPolicy
BuilderDefaults. evictPolicy()
Methods in de.learnlib.filter.reuse with parameters of type BoundedDeque.EvictPolicy Modifier and Type Method Description ReuseOracleBuilder<S,I,O>
ReuseOracleBuilder. withEvictPolicy(BoundedDeque.EvictPolicy evictPolicy)
Sets the new value for the parameterevictPolicy
and returnsthis
builder instance.Constructors in de.learnlib.filter.reuse with parameters of type BoundedDeque.EvictPolicy 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.EvictPolicy in de.learnlib.filter.reuse.tree
Methods in de.learnlib.filter.reuse.tree that return BoundedDeque.EvictPolicy Modifier and Type Method Description static BoundedDeque.EvictPolicy
BoundedDeque.EvictPolicy. valueOf(String name)
Returns the enum constant of this type with the specified name.static BoundedDeque.EvictPolicy[]
BoundedDeque.EvictPolicy. 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.EvictPolicy Modifier and Type Method Description ReuseTreeBuilder<S,I,O>
ReuseTreeBuilder. withEvictPolicy(BoundedDeque.EvictPolicy evictPolicy)
Sets the new value for the parameterevictPolicy
and returnsthis
builder instance.Constructors in de.learnlib.filter.reuse.tree with parameters of type BoundedDeque.EvictPolicy Constructor Description BoundedDeque(int capacity, BoundedDeque.AccessPolicy accessPolicy, BoundedDeque.EvictPolicy evictPolicy)
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)
-