-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.py
218 lines (205 loc) · 7.25 KB
/
main.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
from pulp import pulp, LpStatusOptimal, LpStatus
from gurobi import gurobi_milp
from module import *
from milp import *
from cp import *
import heuristic
import random
import time
import multiprocessing
import pickle
import pandas as pd
from pp import pulp_scheduling
def test1():
load_time = []
object = []
sol_status = []
total = {}
c = 0
for i in range(30):
start_time = time.time()
filename = "problem_M{}.pickle".format(i + 1)
with open(filename, mode='rb') as fr:
test_instance = pickle.load(fr)
values = cp_scheduling_ortools(test_instance)
end_time = time.time()
loading_time = end_time - start_time
if values != None:
load_time.append(loading_time)
object.append(values[0].ObjectiveValue())
c+=1
sol_status.append(values[1])
total[time] = load_time
total[value] = object
total[count] = c
total["answer"] = sol_status
savething = {"object_value": total[value], "time": total[time], "status": total["answer"]}
with open('cp_scheduling_ortools_answer_M{}.pickle'.format(c), mode='wb') as fw:
pickle.dump(savething, fw)
return total
def test2():
load_time = []
object = []
sol_status = []
total = {}
c = 0
for i in range(30):
start_time = time.time()
filename = "problem_M{}.pickle".format(i + 1)
with open(filename, mode='rb') as fr:
test_instance = pickle.load(fr)
values = cp_scheduling(test_instance)
end_time = time.time()
loading_time = end_time - start_time
if values != None:
load_time.append(loading_time)
object.append(values.get_objective_values()[0])
c+=1
sol_status.append(values.get_solve_status())
total[time] = load_time
total[value] = object
total[count] = c
total["answer"] = sol_status
savething = {"object_value": total[value], "time": total[time], "status": total["answer"]}
with open('cp_scheduling_answer_M{}.pickle'.format(c), mode='wb') as fw:
pickle.dump(savething, fw)
return total
def test3():
# pywraplp.Solver.OPTIMAL => 0
# pywraplp.Solver.FEASIBLE => 1
load_time=[]
object = []
sol_status = []
total = {}
c=0
for i in range(30):
start_time = time.time()
filename = "problem_M{}.pickle".format(i + 1)
with open(filename, mode='rb') as fr:
test_instance = pickle.load(fr)
values = milp_scheduling_ortools(test_instance)
end_time = time.time()
loading_time = end_time - start_time
if values != None:
load_time.append(loading_time)
object.append(values.Objective().Value())
sol_status.append(values.Solve())
c +=1
total[time] = load_time
total[value] = object
total["num"] = c
total["answer"] = sol_status
savething = {"num_prob": total["num"], "object_value": total[value], "time": total[time],"status":total["answer"]}
with open('milp_scheduling_ortools_answer_M{}.pickle'.format(c), mode='wb') as fw:
pickle.dump(savething, fw)
return total
def test4():
load_time = []
object = []
sol_status = []
total = {}
c = 0
for i in range(30):
start_time = time.time()
filename = "problem_M{}.pickle".format(i + 1)
with open(filename, mode='rb') as fr:
test_instance = pickle.load(fr)
values = milp_scheduling(test_instance)
end_time = time.time()
loading_time = end_time - start_time
if values != None :
load_time.append(loading_time)
object.append(values.objective_value)
sol_status.append(values.solve_status.name)
c+=1
total[time] = load_time
total[value] = object
total["num"] = c
total["answer"] = sol_status
savething = {"num_prob": total["num"], "object_value": total[value], "time": total[time], "status": total["answer"]}
with open('milp_scheduling_answer_M{}.pickle'.format(c), mode='wb') as fw:
pickle.dump(savething, fw)
return total
def test5():
load_time = []
object = []
sol_status = []
total = {}
c = 0
for i in range(30):
start_time = time.time()
filename = "problem_M{}.pickle".format(i + 1)
with open(filename, mode='rb') as fr:
test_instance = pickle.load(fr)
values = gurobi_milp(test_instance)
end_time = time.time()
loading_time = end_time - start_time
if values != None:
load_time.append(loading_time)
object.append(values.ObjVal)
sol_status.append(values.status)
c += 1
total[time] = load_time
total[value] = object
total["num"] = c
total["answer"] = sol_status
savething = {"num_prob": total["num"], "object_value": total[value], "time": total[time],
"status": total["answer"]}
with open('gurobi_milp_answer_M{}.pickle'.format(c), mode='wb') as fw:
pickle.dump(savething, fw)
return total
def test6():
# 1 = optimap , -1 = Infeasible , 0 = feasible, -2 = unbounded , -3 = 문제정의 x
load_time = []
object = []
sol_status = []
total = {}
c = 0
for i in range(3):
values = 0
start_time = time.time()
filename = "problem{}.pickle".format(i + 1)
with open(filename, mode='rb') as fr:
test_instance = pickle.load(fr)
values = pulp_scheduling(test_instance)
end_time = time.time()
loading_time = end_time - start_time
if values != None:
load_time.append(loading_time)
object.append(pulp.value(values.objective))
if values.status == 1:
sol_status.append('OPTIMAP')
elif values.status == -1:
sol_status.append('INFEASIBLE')
elif values.status == 0:
sol_status.append('FEASIBLE')
elif values.status == -2:
sol_status.append('UNBOUNDED')
else:
sol_status.append('FALSE')
c += 1
total[time] = load_time
total[value] = object
total["num"] = c
total["answer"] = sol_status
savething = {"num_prob": total["num"], "object_value": total[value], "time": total[time], "status": total["answer"]}
with open('pulp_scheduling_answer{}.pickle'.format(c), mode='wb') as fw:
pickle.dump(savething, fw)
return total
if __name__ == '__main__':
cp_or = test1()
cp = test2()
milp_or = test3()
milp = test4()
goruby = test5()
pulp = test6()
#test_instance = generate_prob(numJob=3, numMch=2)
#schedule = heuristic.scheduling(test_instance, 'SPT')
#schedule.print_schedule()
#draw_gantt_chart(schedule, test_instance)
# schedule = milp_scheduling(test_instance)
# schedule.print_schedule()
#draw_gantt_chart(schedule, test_instance)
# schedule = cp_scheduling(test_instance)
# schedule = milp_scheduling_ortools(test_instance)
# schedule = cp_scheduling_ortools(test_instance)