File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,6 +72,15 @@ Properties:
7272- Deterministic: yes
7373- Complete: no
7474```
75+ ---
76+
77+ ## Demo
78+
79+ Input → EFREI file
80+ Output → CLI + Graph
81+
82+ ![ Graph] ( assets/screenshots/automaton.png )
83+ ![ CLI] ( assets/screenshots/cli-output.png )
7584
7685---
7786
Original file line number Diff line number Diff line change 1+ digraph Automaton {
2+ rankdir =LR;
3+ node [shape =circle ];
4+ __start__ [shape =point , label =" " ];
5+ " 0" [shape =circle ];
6+ " 1" [shape =doublecircle ];
7+ " 2" [shape =circle ];
8+ " 3" [shape =circle ];
9+ " 4" [shape =circle ];
10+ __start__ -> " 1" ;
11+ " 0" -> " 3" [label =" a" ];
12+ " 0" -> " 1" [label =" b" ];
13+ " 0" -> " 3" [label =" c" ];
14+ " 1" -> " 0" [label =" a" ];
15+ " 1" -> " 2" [label =" b" ];
16+ " 2" -> " 1" [label =" a" ];
17+ " 2" -> " 4" [label =" b" ];
18+ " 2" -> " 4" [label =" c" ];
19+ " 3" -> " 3" [label =" a" ];
20+ " 3" -> " 3" [label =" b" ];
21+ " 3" -> " 3" [label =" c" ];
22+ " 4" -> " 4" [label =" a" ];
23+ " 4" -> " 4" [label =" b" ];
24+ " 4" -> " 4" [label =" c" ];
25+ }
You can’t perform that action at this time.
0 commit comments