-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwalkthrough_simple.py
55 lines (49 loc) · 1.62 KB
/
walkthrough_simple.py
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
import json
import const
import walkthrough_base
services = [
{
'service': 0,
'name': 's_chile',
'sd0': ('national', False), # sample type
'sd1': ('LATAM', False), # location
'req0': ({'national', 'three_biggest_cities', 'urban'},
const.REQ_CARDINALITY_FORALL, True), # requirement on type
'req1': ({'EEU', 'WEU', 'LATAM'}, const.REQ_CARDINALITY_FORALL, False), # requirement on location
'policy': [0.4, 0.7],
'change': []
},
{
'service': 1,
'name': 's_france',
'sd0': ('national', True), # sample type
'sd1': ('WEU', True), # location
'req0': ({'national'}, const.REQ_CARDINALITY_EXISTS, True), # requirement on type
'req2': ({'WEU', 'EEU'}, const.REQ_CARDINALITY_FORALL, True), # requirement on location
'policy': [0.4, 0.7],
'change': []
},
{
'service': 2,
'name': 's_poland',
'sd0': ('national', True), # sample type
'sd1': ('EEU', True), # location
'req0': ({'national', 'three_biggest_cities', 'urban'},
const.REQ_CARDINALITY_FORALL, True), # requirement on type
'req2': ({'WEU', 'EEU', 'LATAM'}, const.REQ_CARDINALITY_FORALL, False), # requirement on location
'policy': [0.2, 0.5],
'change': []
}
]
changes = [
(
's_poland',
[
('sd0', 'urban')
]
),
]
results = walkthrough_base.execute_walkthrough(services=services, changes=changes)
# if args.output_file:
# sys.stdout = open(args.output_file, 'w')
print(json.dumps(results, indent=4))