Class AbstractMealySymLearnerIT


  • public abstract class AbstractMealySymLearnerIT
    extends Object
    Abstract integration test for Mealy machine learning algorithms.

    Mealy machine learning algorithms tested by this integration test are expected to assume membership queries yield only the last symbol of the output word. If the learning algorithm expects the full output word for the suffix part of the query, use AbstractMealyLearnerIT.

    • Constructor Detail

      • AbstractMealySymLearnerIT

        public AbstractMealySymLearnerIT()
    • Method Detail

      • createExampleITCases

        @Factory
        public Object[] createExampleITCases()
      • addLearnerVariants

        protected abstract <I,​O> void addLearnerVariants​(net.automatalib.alphabet.Alphabet<I> alphabet,
                                                               MembershipOracle<I,​O> mqOracle,
                                                               LearnerVariantList.MealySymLearnerVariantList<I,​O> variants)
        Adds, for a given setup, all the variants of the Mealy machine learner to be tested to the specified variant list.
        Type Parameters:
        I - input symbol type
        O - output symbol type
        Parameters:
        alphabet - the input alphabet
        mqOracle - the membership oracle
        variants - list to add the learner variants to