Interface SimpleDeterministicAutomaton.FullIntAbstraction

    • Method Detail

      • getSuccessor

        int getSuccessor​(int state,
                         int input)
        Retrieves the (abstracted) successor for a given (abstracted) source state and (abstracted) input.
        Parameters:
        state - the integer representing the source state
        input - the integer representing the input symbol
        Returns:
        the integer representing the target state, or SimpleDeterministicAutomaton.IntAbstraction.INVALID_STATE if there is no successor state.
      • numInputs

        int numInputs()
        Retrieves the number of input symbols. This determines the valid range of input symbols, which is [0, numInputs() - 1].
        Returns:
        the number of input symbols