-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtest_loader.py
129 lines (120 loc) · 2.71 KB
/
test_loader.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import sys
sys.path.append(".")
from psp.utils.loaders import PSPLoader
def test_psp_loader_rcp():
loader = PSPLoader()
rcp = loader.load_single("instances/psp/patterson/pat103.rcp")
assert len(rcp["durations"]) == 3
assert rcp["durations"][0] == rcp["durations"][1]
assert rcp["durations"][0] == rcp["durations"][2]
assert rcp["n_jobs"] == 51
assert rcp["n_modes"] == 51
assert rcp["n_resources"] == 3
assert rcp["n_renewable_resources"] == 3
assert rcp["n_nonrenewable_resources"] == 0
assert rcp["n_doubly_constrained_resources"] == 0
assert len(rcp["job_info"]) == 51
assert rcp["job_info"][0][1] == [2, 3, 4]
# "durations": durations,
# "resources": resources,
assert rcp["resource_availability"] == [14, 14, 12]
assert rcp["max_resource_availability"] == 14
assert rcp["max_resource_request"] == 6
def test_psp_loader_sm():
loader = PSPLoader()
det = loader.load_single("instances/psp/272/272.sm")
assert len(det["durations"]) == 3
assert det["durations"][0] == det["durations"][1]
assert det["durations"][0] == det["durations"][2]
unc = loader.load_single("instances/psp/272/272_unc.sm")
assert len(unc["durations"]) == 3
assert unc["durations"][0] == [
[0],
[38],
[13],
[73],
[10],
[76],
[6],
[80],
[65],
[17],
[2],
[77],
[72],
[7],
[26],
[51],
[21],
[0],
]
assert unc["durations"][1] == [
[0],
[35],
[12],
[70],
[9],
[70],
[5],
[75],
[60],
[16],
[1],
[70],
[71],
[6],
[20],
[50],
[20],
[0],
]
assert unc["durations"][2] == [
[0],
[40],
[15],
[80],
[15],
[90],
[10],
[90],
[80],
[20],
[3],
[85],
[83],
[10],
[30],
[60],
[25],
[0],
]
loader_wb = PSPLoader(generate_bounds=[0.1, 0.2])
unc_bounds = loader_wb.load_single("instances/psp/272/272.sm")
modes = unc_bounds["durations"][0]
assert modes == [
[0],
[38],
[13],
[73],
[10],
[76],
[6],
[80],
[65],
[17],
[2],
[77],
[72],
[7],
[26],
[51],
[21],
[0],
]
mins = []
maxs = []
for j in range(18):
mins.append([int(modes[j][0] * 0.9)])
maxs.append([int(modes[j][0] * 1.2)])
assert unc_bounds["durations"][1] == mins
assert unc_bounds["durations"][2] == maxs