de.learnlib.oracle.equivalence.DFACompleteExplorationEQOracle 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
// This class has been generated by de.learnlib.buildtool.refinement.processor.RefinementProcessor.
// Do not edit this class, changes will be overridden.
package de.learnlib.oracle.equivalence;
import de.learnlib.api.oracle.EquivalenceOracle;
import de.learnlib.api.oracle.MembershipOracle;
import java.lang.Boolean;
import net.automatalib.automata.fsa.DFA;
/**
* This is an auto-generated refinement. See the {@link CompleteExplorationEQOracle original class}.
*/
public class DFACompleteExplorationEQOracle extends CompleteExplorationEQOracle, I, Boolean> implements EquivalenceOracle.DFAEquivalenceOracle {
/**
* This is an auto-generated constructor. See the {@link CompleteExplorationEQOracle#CompleteExplorationEQOracle(MembershipOracle, int) original constructor}.
*/
public DFACompleteExplorationEQOracle(MembershipOracle.DFAMembershipOracle sulOracle,
int maxDepth) {
super(sulOracle, maxDepth);
}
/**
* This is an auto-generated constructor. See the {@link CompleteExplorationEQOracle#CompleteExplorationEQOracle(MembershipOracle, int, int) original constructor}.
*/
public DFACompleteExplorationEQOracle(MembershipOracle.DFAMembershipOracle sulOracle,
int minDepth, int maxDepth) {
super(sulOracle, minDepth, maxDepth);
}
/**
* This is an auto-generated constructor. See the {@link CompleteExplorationEQOracle#CompleteExplorationEQOracle(MembershipOracle, int, int, int) original constructor}.
*/
public DFACompleteExplorationEQOracle(MembershipOracle.DFAMembershipOracle sulOracle,
int minDepth, int maxDepth, int batchSize) {
super(sulOracle, minDepth, maxDepth, batchSize);
}
}