-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_requests.http
67 lines (62 loc) · 1.38 KB
/
example_requests.http
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
57
58
59
60
61
62
63
64
65
66
67
POST http://localhost:8082/generate
Content-Type: application/json
{
"l1_pops": 3,
"l2_pops": 15,
"pop_regions": 9,
"core_node_scaling_threshold": 7,
"random_core_nodes": 0,
"random_core_node_connections": 0,
"random_distribution": "uniform",
"topology": "gabriel",
"no_cut_edges_and_nodes": true
}
###
POST http://localhost:8082/generate
Content-Type: application/json
{
"l1_pops": 3,
"l2_pops": 15,
"pop_regions": 9,
"core_nodes_scaling_threshold": 7,
"random_core_nodes": 0,
"random_core_node_connections": 0,
"random_distribution": "normal",
"topology": "gabriel",
"no_cut_edges_and_nodes": true
}
###
POST http://localhost:8082/convert?file_format=gexf
Content-Type: application/json
{
"nodes":[
{
"node_id":"0_1",
"attributes":{
"pop_region":"0",
"node_type":"core",
"coordinate_x":0.4671831947233605,
"coordinate_y":0.36467550076790156
}
},
{
"node_id":"0_2",
"attributes":{
"pop_region":"0",
"node_type":"core",
"coordinate_x":0.4771831947233605,
"coordinate_y":0.36467550076790156
}
}
],
"edges":[
{
"node_from":"0_1",
"node_to":"0_2",
"attributes":{
"weight":1.0,
"edge_type":"core_to_core"
}
}
]
}