automaton

An automaton library & basic programs written in Rust
git clone git://git.ethandl.dev/automaton
Log | Files | Refs | README

comp1600_a3_q3.enfa (379B)


      1 {
      2     "description": "The following NFA is from the ANU COMP1600 course, assignment 3, question 3",
      3     "alphabet": [0, 1],
      4     "states": [0, 1, 2, 3, 4],
      5     "initial_state": 0,
      6     "final_states": [2, 4],
      7     "transition_table": [
      8         [0, [0], [0, 3], [1]],
      9         [1, [3], [2], [4]],
     10         [2, [4], [], []],
     11         [3, [4], [], []],
     12         [4, [], [], [0, 2]]
     13     ]
     14 }