Interface AutomatonOracle.DFAOracle<I>

    • Method Detail

      • accepts

        default boolean accepts​(DFA<?,​I> hypothesis,
                                Iterable<? extends I> input)
        Description copied from interface: AutomatonOracle
        Returns whether the given input is accepted by the given hypothesis.
        Specified by:
        accepts in interface AutomatonOracle<DFA<?,​I>,​I,​Boolean>
        Parameters:
        hypothesis - the hypothesis automaton.
        input - the input.
        Returns:
        whether the given input is accepted.