Interface SimpleDeterministicAutomaton.StateIntAbstraction<I>

    • Method Detail

      • getSuccessor

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