summaryrefslogtreecommitdiff
path: root/test/dags/simple.json
blob: 16a2ef092c0734bde3130074ca55cd16682284ab (plain)
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
{

"nodes":
[
 {"label":"0"},
 {"label":"7"},
 {"label":"5"},
 {"label":"6"},
 {"label":"100"}
],

"arcs":
[
 { "tail":"0", "head":"7", "weight":"0.1" },
 { "tail":"0", "head":"5", "weight":"0.1" },

 { "tail":"7", "head":"100", "weight":"0.9" },

 { "tail":"5", "head":"6", "weight":"0.3" },

 { "tail":"6", "head":"100", "weight":"0.3" }
]

}