Input - kuhi/simple-fsm GitHub Wiki

The Automaton

The input is in the form of a FSM-XML aka Finite State Machine XML. It defines states and transitions from each state. It's required to have at least one state. The first state is alyways the initial one.

<fsm>
    <state id="0" type="r" label="initial">  
        <transition under="a">0</transition>  
    </state>  
</fsm>

Input words

The list of words which are meant to be tested by the FSM we got in the first step will be provided via a textarea on the index of the app.

⚠️ **GitHub.com Fallback** ⚠️