-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph10.json
More file actions
28 lines (28 loc) · 775 Bytes
/
graph10.json
File metadata and controls
28 lines (28 loc) · 775 Bytes
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
{
"graph": {
"directed": true,
"cyclic": false,
"type": "directed acyclic graph",
"label": "simple test",
"nodes": [
{ "id": 7 },
{ "id": 5 },
{ "id": 3 },
{ "id": 11 },
{ "id": 8 },
{ "id": 2 },
{ "id": 9 },
{ "id": 10 }
],
"edges": [
{"source": 7, "targets": [11, 8] },
{"source": 5, "targets": [11] },
{"source": 3, "targets": [8, 10] },
{"source": 11, "targets": [2, 9, 10] },
{"source": 2, "targets": [] },
{"source": 9, "targets": [] },
{"source": 10, "targets": [] },
{"source": 8, "targets": [9] }
]
}
}