Package de.learnlib.algorithm
Interface LearnerConstructor<L extends LearningAlgorithm<?,I,D>,I,D>
-
- Type Parameters:
L- learner typeI- input symbol typeD- output domain type
public interface LearnerConstructor<L extends LearningAlgorithm<?,I,D>,I,D>A simplified view on the constructor of aLearningAlgorithm, that only requires anAlphabetdefinition and aMembershipOracle.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LconstructLearner(Alphabet<I> alphabet, MembershipOracle<I,D> oracle)Construct the learner instance.
-