-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest1.json
49 lines (45 loc) · 920 Bytes
/
test1.json
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
{
"routers": ["A", "E"],
"clients": ["b", "c", "d"],
"clientSendRate": 10,
"endTime": 100,
"links": [
["A","b", 1, 1, 1, 1],
["A","c", 2, 1, 1, 1],
["E","d", 1, 1, 1, 1],
["E","A", 2, 3, 1, 1]
],
"changes": [],
"correctRoutes": [
["b", "A", "c"],
["b", "A", "b"],
["b", "A", "E", "d"],
["c", "A", "c"],
["c", "A", "b"],
["c", "A", "E", "d"],
["d", "E", "d"],
["d", "E", "A", "c"],
["d", "E", "A", "b"]
],
"visualize": {
"gridSize": 3,
"locations": {
"A":[1,0],
"b":[0,0],
"c":[2,0],
"d": [1,2],
"E": [1,1]
},
"canvasWidth": 800,
"canvasHeight": 800,
"timeMultiplier": 20,
"latencyCorrection": 1.5,
"animateRate": 40,
"routerColor": "red",
"clientColor": "DodgerBlue2",
"lineColor": "orange",
"inactiveColor": "gray",
"lineWidth": 6,
"lineFontSize": 16
}
}