Class SymbolEQOracleWrapper<A extends net.automatalib.automaton.concept.DetSuffixOutputAutomaton<?,I,?,net.automatalib.word.Word<O>>,I,O>
- java.lang.Object
-
- de.learnlib.oracle.equivalence.mealy.SymbolEQOracleWrapper<A,I,O>
-
- All Implemented Interfaces:
EquivalenceOracle<A,I,O>
public class SymbolEQOracleWrapper<A extends net.automatalib.automaton.concept.DetSuffixOutputAutomaton<?,I,?,net.automatalib.word.Word<O>>,I,O> extends Object implements EquivalenceOracle<A,I,O>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface de.learnlib.oracle.EquivalenceOracle
EquivalenceOracle.DFAEquivalenceOracle<I>, EquivalenceOracle.MealyEquivalenceOracle<I,O>, EquivalenceOracle.MooreEquivalenceOracle<I,O>
-
-
Constructor Summary
Constructors Constructor Description SymbolEQOracleWrapper(EquivalenceOracle<? super A,I,net.automatalib.word.Word<O>> wordEqOracle)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable DefaultQuery<I,O>
findCounterExample(A hypothesis, Collection<? extends I> inputs)
Searches for a counterexample disproving the subjected hypothesis.
-
-
-
Constructor Detail
-
SymbolEQOracleWrapper
public SymbolEQOracleWrapper(EquivalenceOracle<? super A,I,net.automatalib.word.Word<O>> wordEqOracle)
-
-
Method Detail
-
findCounterExample
public @Nullable DefaultQuery<I,O> findCounterExample(A hypothesis, Collection<? extends I> inputs)
Description copied from interface:EquivalenceOracle
Searches for a counterexample disproving the subjected hypothesis. A counterexample is query which, when performed on the SUL, yields a different output than what was predicted by the hypothesis. If no counterexample could be found (this does not necessarily mean that none exists),null
is returned.- Specified by:
findCounterExample
in interfaceEquivalenceOracle<A extends net.automatalib.automaton.concept.DetSuffixOutputAutomaton<?,I,?,net.automatalib.word.Word<O>>,I,O>
- Parameters:
hypothesis
- the conjectureinputs
- the set of inputs to consider, this should be a subset of the input alphabet of the provided hypothesis- Returns:
- a query exposing different behavior, or
null
if no counterexample could be found. In case a non-null
value is returned, the output field in theDefaultQuery
contains the SUL output for the respective query.
-
-