Package de.learnlib.algorithm.kv.mealy
Class KearnsVaziraniMealyBuilder<I,O>
- java.lang.Object
-
- de.learnlib.algorithm.kv.mealy.KearnsVaziraniMealyBuilder<I,O>
-
public final class KearnsVaziraniMealyBuilder<I,O> extends Object
-
-
Constructor Summary
Constructors Constructor Description KearnsVaziraniMealyBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KearnsVaziraniMealy<I,O>create()Alphabet<I>getAlphabet()AcexAnalyzergetCounterexampleAnalyzer()MembershipOracle<I,Word<O>>getOracle()booleangetRepeatedCounterexampleEvaluation()voidsetAlphabet(Alphabet<I> alphabet)voidsetCounterexampleAnalyzer(AcexAnalyzer counterexampleAnalyzer)voidsetOracle(MembershipOracle<I,Word<O>> oracle)voidsetRepeatedCounterexampleEvaluation(boolean repeatedCounterexampleEvaluation)KearnsVaziraniMealyBuilder<I,O>withAlphabet(Alphabet<I> alphabet)KearnsVaziraniMealyBuilder<I,O>withCounterexampleAnalyzer(AcexAnalyzer counterexampleAnalyzer)KearnsVaziraniMealyBuilder<I,O>withOracle(MembershipOracle<I,Word<O>> oracle)KearnsVaziraniMealyBuilder<I,O>withRepeatedCounterexampleEvaluation(boolean repeatedCounterexampleEvaluation)
-
-
-
Method Detail
-
create
public KearnsVaziraniMealy<I,O> create()
-
withAlphabet
public KearnsVaziraniMealyBuilder<I,O> withAlphabet(Alphabet<I> alphabet)
-
getOracle
public MembershipOracle<I,Word<O>> getOracle()
-
setOracle
public void setOracle(MembershipOracle<I,Word<O>> oracle)
-
withOracle
public KearnsVaziraniMealyBuilder<I,O> withOracle(MembershipOracle<I,Word<O>> oracle)
-
getRepeatedCounterexampleEvaluation
public boolean getRepeatedCounterexampleEvaluation()
-
setRepeatedCounterexampleEvaluation
public void setRepeatedCounterexampleEvaluation(boolean repeatedCounterexampleEvaluation)
-
withRepeatedCounterexampleEvaluation
public KearnsVaziraniMealyBuilder<I,O> withRepeatedCounterexampleEvaluation(boolean repeatedCounterexampleEvaluation)
-
getCounterexampleAnalyzer
public AcexAnalyzer getCounterexampleAnalyzer()
-
setCounterexampleAnalyzer
public void setCounterexampleAnalyzer(AcexAnalyzer counterexampleAnalyzer)
-
withCounterexampleAnalyzer
public KearnsVaziraniMealyBuilder<I,O> withCounterexampleAnalyzer(AcexAnalyzer counterexampleAnalyzer)
-
-