-
Notifications
You must be signed in to change notification settings - Fork 2
/
notes
56 lines (50 loc) · 994 Bytes
/
notes
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
53
54
55
56
/*
[
{
"id": "q_0",
"edges": [
{
"symbol": "0",
"target": "q_0",
"source": "q_0"
},
{
"symbol": "1",
"target": "q_1",
"source": "q_0"
}
],
"type": "initial"
},
{
"id": "q_0",
"edges": [
{
"symbol": "0",
"target": "q_0",
"source": "q_0"
},
{
"symbol": "1",
"target": "q_1",
"source": "q_0"
}
]
}
]
digraph {
START
offline
scanning
joining
online [peripheries=2]
START -> offline
offline -> scanning [label="scan"]
offline -> offline [label="failed scan"]
scanning -> joining [label="detected"]
scanning -> offline [label="failed join"]
joining -> online [label="handshake"]
joining -> offline [label="failed handshake"]
online -> offline [label="timeout"]
}
*/