Skip to content

Commit 2e63887

Browse files
committed
add assets
1 parent 3c2ffe1 commit 2e63887

4 files changed

Lines changed: 34 additions & 0 deletions

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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

assets/screenshots/cli-output.png

24.1 KB
Loading

assets/screenshots/graph.png

23.5 KB
Loading

graph.dot

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
}

0 commit comments

Comments
 (0)