de.learnlib.oracle.equivalence.mealy.SymbolEQOracleWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of learnlib-equivalence-oracles Show documentation
Show all versions of learnlib-equivalence-oracles Show documentation
A collection of equivalence oracles
/* Copyright (C) 2013-2020 TU Dortmund
* This file is part of LearnLib, http://www.learnlib.de/.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.learnlib.oracle.equivalence.mealy;
import java.util.Collection;
import java.util.Objects;
import de.learnlib.api.oracle.EquivalenceOracle;
import de.learnlib.api.query.DefaultQuery;
import net.automatalib.automata.concepts.DetSuffixOutputAutomaton;
import net.automatalib.words.Word;
import org.checkerframework.checker.nullness.qual.Nullable;
public class SymbolEQOracleWrapper>, I, O>
implements EquivalenceOracle {
private final EquivalenceOracle super A, I, Word> wordEqOracle;
public SymbolEQOracleWrapper(EquivalenceOracle super A, I, Word> wordEqOracle) {
this.wordEqOracle = wordEqOracle;
}
@Override
public @Nullable DefaultQuery findCounterExample(A hypothesis, Collection extends I> inputs) {
DefaultQuery> wordCeQry = wordEqOracle.findCounterExample(hypothesis, inputs);
if (wordCeQry == null) {
return null;
}
Word hypOut = hypothesis.computeSuffixOutput(wordCeQry.getPrefix(), wordCeQry.getSuffix());
Word ceOut = wordCeQry.getOutput();
int len = hypOut.length();
if (len != ceOut.length()) {
throw new IllegalStateException(
"Output word length does not align with suffix length, truncating CE will not work");
}
for (int i = 0; i < len; i++) {
O hypSym = hypOut.getSymbol(i), ceSym = ceOut.getSymbol(i);
if (!Objects.equals(hypSym, ceSym)) {
DefaultQuery result =
new DefaultQuery<>(wordCeQry.getPrefix(), wordCeQry.getSuffix().prefix(i + 1));
result.answer(ceSym);
return result;
}
}
throw new IllegalStateException("Counterexample returned by underlying EQ oracle was none");
}
}