-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.bat
More file actions
20 lines (15 loc) · 750 Bytes
/
run.bat
File metadata and controls
20 lines (15 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
python regexToNFA.py convert "(1|0)*1" in NFA1.json NFA1
python regexToNFA.py convert "(a|b)*abb" in NFA2.json NFA2
python regexToNFA.py convert "(a|b)*[A-Z]+(a|b)*" in NFA3.json NFA3
python regexToNFA.py convert "(AB|C[A-Z])+" in NFA4.json NFA4
pause
python NFAtoDFA.py convert NFA1.json in DFA1.json DFA1
python NFAtoDFA.py convert NFA2.json in DFA2.json DFA2
python NFAtoDFA.py convert NFA3.json in DFA3.json DFA3
python NFAtoDFA.py convert NFA4.json in DFA4.json DFA4
pause
python minimizeDFA.py minimize DFA1.json in minDFA1.json minDFA1
python minimizeDFA.py minimize DFA2.json in minDFA2.json minDFA2
python minimizeDFA.py minimize DFA3.json in minDFA3.json minDFA3
python minimizeDFA.py minimize DFA4.json in minDFA4.json minDFA4
pause