-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample_dfa.py
56 lines (38 loc) · 1.64 KB
/
example_dfa.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from dfa import set_state_and_transitions, input_command, print_current_state, execute_current_state, show_available_inputs
""" Deterministic Finite Automaton Emulator
Shorter:
Nothing too fancy. Just a simple DFA emulator. Set state name and transitions to that state
in the decorator arguments.
Short:
@set_state_and_transitions takes arguments string and dict as state name and transitions.
print_current_state() prints the state the automaton is currently in.
execute_current_state() executes the current function associated with the state
input_command() inputs the given string to the automaton
show_available_inputs() prints all possible inputs from the current state and the states those inputs
lead to.
Example:
This example shows the next automaton:
START [0--> <--1] A [0--> <--1] B
[ 1--> <--0 ]
"""
@set_state_and_transitions('start', {'0': 'A', '1': 'B'})
def function1():
print('You have to start somewhere')
@set_state_and_transitions('A', {'0': 'B', '1': 'START'})
def function2():
print('Here')
@set_state_and_transitions('B', {'0': 'START', '1': 'A'})
def function3():
print('There')
if __name__ == "__main__":
print_current_state()
execute_current_state()
show_available_inputs()
while True:
command = input('\nWhat is your next input: ')
if command:
input_command(command)
execute_current_state()
else:
print_current_state()
show_available_inputs()