-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvrp.py
More file actions
483 lines (368 loc) · 17.6 KB
/
vrp.py
File metadata and controls
483 lines (368 loc) · 17.6 KB
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
from random import randint,uniform,shuffle,choice,lognormvariate
from math import sqrt,inf,exp
from operator import itemgetter
from collections import deque
from copy import deepcopy
def OrderGenerator(numOfOrders,quantityLimit,distanceLimit):
deliveryWindowStartLimit = 7
deliveryWindowEndLimit = 17
deliveryWindowLengthMinLimit = 2
deliveryWindowLengthMaxLimit = deliveryWindowEndLimit-deliveryWindowStartLimit
orders = []
for i in range(numOfOrders):
order = {}
order['id']=i
order['quantity']=quantityLimit+1
while order['quantity'] > quantityLimit:
order['quantity']=int(round(lognormvariate(1.609,1)))
order['x']=uniform(0,distanceLimit)
order['y']=uniform(0,distanceLimit)
order['timeWindowLength']=randint(deliveryWindowLengthMinLimit,deliveryWindowLengthMaxLimit)
order['timeWindowStart']=randint(deliveryWindowStartLimit,deliveryWindowEndLimit-order['timeWindowLength'])
order['timeWindowEnd']=order['timeWindowStart']+order['timeWindowLength']
orders.append(order)
return orders
def Distance(x,y):
distance = sqrt((x*x)+(y*y))
return distance
def DistanceBetween(x1,y1,x2,y2):
distance = sqrt(((x2-x1)**2)+((y2-y1)**2))
return distance
def CapacityCheck(run,checkOrder):
validFlag = True
quantityTotal = checkOrder['quantity']
quantityTotal += run['quantity']
totalOrders = len(run['orders'])+1
if run['truck']['capacity'] < quantityTotal:
validFlag = False
if run['truck']['maxOrdersPerRun'] < totalOrders:
validFlag = False
return validFlag
def TemporalConsistencyCheck(run,checkOrder):
validFlag = True
if len(run['orders'])>0:
if checkOrder['timeWindowEnd'] < run['orders'][-1]['timeWindowStart']:
validFlag = False
return validFlag
def PrettyPrintSimulatedSchedule(schedule):
for queue in schedule['queues']:
print('Truck ',queue['truck']['id'],' with capacity of ',queue['truck']['capacity'])
if len(queue['runs']) == 0:
print('Not used')
else:
for ii in range(len(queue['runs'])):
print('\tRun #',ii,' total of ',queue['runs'][ii]['quantity'],' units')
for order in queue['runs'][ii]['orders']:
if order['servedAt'] > order['timeWindowEnd']:
print('\t\tOrder #',order['id'],' of ',order['quantity'],' units served late @ ',order['servedAt'])
elif order['servedAt'] < order['timeWindowStart']:
print('\t\tOrder #',order['id'],' of ',order['quantity'],' units served early @ ',order['servedAt'])
else:
print('\t\tOrder #',order['id'],' of ',order['quantity'],' units served on time @ ',order['servedAt'])
def RandomRouter(trucks,orders):
schedule = {}
schedule['queues'] = []
schedule['speed'] = 45
schedule['overheadCostRate'] = 270
schedule['lateTimeErrorCostRate'] = 3*schedule['overheadCostRate']
schedule['earlyTimeErrorCostRate'] = 2*schedule['overheadCostRate']
runs = []
shuffle(orders)
workingOrders = deque(orders)
workingRun = {}
workingRun['truck'] = {}
workingRun['quantity'] = 0
workingRun['orders'] = deque()
while len(workingOrders)>0:
for ii in range(len(workingOrders)):
if len(workingRun['truck'])==0:
workingRun['truck'] = choice(trucks)
workingOrder = workingOrders.pop()
validOrder = False
if (CapacityCheck(workingRun,workingOrder) and TemporalConsistencyCheck(workingRun,workingOrder)):
validOrder = True
if validOrder:
workingRun['orders'].append(workingOrder)
workingRun['quantity'] += workingOrder['quantity']
else:
workingOrders.appendleft(workingOrder)
else:
workingOrder = workingOrders.pop()
validOrder = False
if (CapacityCheck(workingRun,workingOrder) and TemporalConsistencyCheck(workingRun,workingOrder)):
validOrder = True
if validOrder:
workingRun['orders'].append(workingOrder)
workingRun['quantity'] += workingOrder['quantity']
else:
workingOrders.appendleft(workingOrder)
runs.append(workingRun)
workingRun = {}
workingRun['truck'] = {}
workingRun['quantity'] = 0
workingRun['orders'] = deque()
for truck in trucks:
queue = {}
queue['truck'] = truck
queue['runs'] = []
schedule['queues'].append(queue)
shuffle(runs)
for queue in schedule['queues']:
for run in runs:
run['orders'] = list(run['orders'])
if run['truck']['id'] == queue['truck']['id']:
if run['quantity'] > 0:
queue['runs'].append(run)
return schedule
def HeuristicRouter(trucks,orders):
schedule = {}
schedule['queues'] = []
schedule['directCost'] = inf
schedule['oppurtunityCost'] = inf
schedule['totalCost'] = inf
schedule['requiredTime'] = inf
trucks.sort(key=itemgetter('capacity'))
orders.sort(key=itemgetter('quantity'),reverse=True)
for truck in trucks:
queue = {}
queue['truck'] = truck
queue['orders'] = []
queue['directCost'] = inf
queue['oppurtunityCost'] = inf
queue['totalCost'] = inf
queue['requiredTime'] = inf
schedule['queues'].append(queue)
for order in orders:
#print('scheduling order ',order['id'])
for queue in schedule['queues']:
#print('checking truck ',queue['truck']['id'])
truck = queue['truck']
if order['quantity']<= truck['capacity']:
#print('truck ',truck['id'], ' has sufficient capacity')
queueLength = len(queue['orders'])
targetCapacity = truck['capacity']
currentTruckID = truck['id']
betterFlag = False
for comparisonQueue in schedule['queues']:
if truck['id'] != comparisonQueue['truck']['id']:
if comparisonQueue['truck']['capacity'] == targetCapacity:
if len(comparisonQueue['orders']) < queueLength:
#print('deffering assignment of order ',order['id'],' to truck ',truck['id'],' as truck ',comparisonQueue['truck']['id'],' is better suited' )
betterFlag = True
if not betterFlag:
#print('assigning order ',order['id'],' to truck ',truck['id'])
queue['orders'].append(order)
break
return schedule
def SimpleScheduleRunner(schedule,verbose):
# function to simulate a given schedule
simulatedSchedule = deepcopy(schedule)
# cost tracking variables for schedulewide tracking
simulatedSchedule['directCost'] = 0.0
simulatedSchedule['oppurtunityCost'] = 0.0
simulatedSchedule['reverseOppurtunityCost'] = 0.0
simulatedSchedule['overheadCost'] = 0.0
simulatedSchedule['errorCost'] = 0.0
simulatedSchedule['totalCost'] = 0.0
simulatedSchedule['errorTime'] = 0.0
for queue in simulatedSchedule['queues']:
# iterate through each queue in schedule and simulate each run
# cost tracking variables for per queue tracking
queue['directCost'] = 0.0
queue['oppurtunityCost'] = 0.0
queue['reverseOppurtunityCost'] = 0.0
queue['errorCost'] = 0.0
queue['totalCost'] = 0.0
queue['requiredTime'] = 0.0
queue['errorTime'] = 0.0
# set current truck
truck = queue['truck']
if verbose:
print('truck #{0:d}'.format(truck['id']))
# run numbering as runs are not uniquely numbered
ii = 0
for run in queue['runs']:
# iterate through each run in queue and simulate
# cost tracking variables for per run tracking
run['directCost'] = 0.0
run['oppurtunityCost'] = 0.0
run['reverseOppurtunityCost'] = 0.0
run['errorCost'] = 0.0
run['totalCost'] = 0.0
run['requiredTime'] = 0.0
run['errorTime'] = 0.0
# penalty for over capacity runs
if run['quantity'] > truck['capacity']:
# penalty multiplier starting at 10 and rising exponetially with excess quantity served
run['costMultiplier'] = 10*exp(run['quantity']-truck['capacity'])
else:
run['costMultiplier'] = 1
if verbose:
print('\tstarts run #{0:d}'.format(ii))
print('\t\tdeparts home at ({0:5.2f},{1:5.2f},{2:5.2f})'.format(truck['x'],truck['y'],truck['time']))
# iterate run numbering
ii += 1
for order in run['orders']:
# iterate through each order in the run and simulate
# distance from current truck position to order location
marginalDistance = DistanceBetween(truck['x'],truck['y'],order['x'],order['y'])
# time required to travel from current location to order location
marginalTime = (marginalDistance/schedule['speed'])
# update truck state variables to fulfill order
truck['x'] = order['x']
truck['y'] = order['y']
truck['time'] += marginalTime
# note temporal effects of fulfilling order where necessary
order['servedAt'] = truck['time']
run['requiredTime'] += marginalTime
queue['requiredTime'] += marginalTime
# check if order was served on time and apply necessary penalties
if truck['time'] > order['timeWindowEnd']:
# if truck is late
# accumulate total error time
run['errorTime'] += truck['time']-order['timeWindowEnd']
queue['errorTime'] += run['errorTime']
# caclculate of being late
run['errorCost'] += run['errorTime']*simulatedSchedule['lateTimeErrorCostRate']
elif truck['time'] < order['timeWindowStart']:
# if truck is early
# accumulate total error time
run['errorTime'] += order['timeWindowStart']-truck['time']
queue['errorTime'] += run['errorTime']
# caclculate of being early
run['errorCost'] += run['errorTime']*simulatedSchedule['earlyTimeErrorCostRate']
else:
# hopefully only when on time
run['errorCost'] = 0
run['errorTime'] += 0
queue['errorTime'] += 0
if verbose:
print('\t\tarrives at order #{0:d} at ({1:5.2f},{2:5.2f},{3:5.2f})'.format(order['id'],truck['x'],truck['y'],truck['time']))
# note temporal effects of unloading order where necessary
truck['time'] += truck['unloadTime']
queue['requiredTime'] += truck['unloadTime']
run['requiredTime'] += truck['unloadTime']
# run complete so simulate return to base
# distance from current truck position to base location
marginalDistance = DistanceBetween(truck['x'],truck['y'],truck['homeX'],truck['homeY'])
# time required to travel from current location to base location
marginalTime = (marginalDistance/simulatedSchedule['speed'])
# update truck state variables to return to base
truck['x'] = order['x']
truck['y'] = order['y']
truck['time'] += marginalTime
# note temporal effects of returning to base
queue['requiredTime'] += marginalTime
run['requiredTime'] += marginalTime
if verbose:
print('\t\tarrives at home at ({0:5.2f},{1:5.2f},{2:5.2f})'.format(truck['x'],truck['y'],truck['time']))
# prepare truck for next run
truck['time'] += truck['turnAroundTime']
queue['requiredTime'] += truck['turnAroundTime']
run['requiredTime'] += truck['turnAroundTime']
# calculate costs
# direct cost is actual incured cost to operate truck with penalty for being overcapacity
run['directCost'] = run['costMultiplier']*run['requiredTime']*int(truck['cost'])
# oppurtunity cost is a fraction of the the direct cost of the run allocated in proportion to the underutilized capacity on truck
if run['costMultiplier'] == 1:
# only oppurtunity cost when not overcapacity
run['oppurtunityCost'] = run['directCost']*((truck['capacity']-run['quantity'])/truck['capacity'])
else:
run['oppurtunityCost'] = 0
for order in run['orders']:
# iterate through each order in the run and calculate reverseOppurtunityCost
# reverse oppurtunity cost is a penalty for using an oversized truck
run['reverseOppurtunityCost'] = run['directCost']*((truck['capacity']-order['quantity'])/truck['capacity'])
# combine run cost contributers
run['totalCost'] = run['directCost']+run['oppurtunityCost']+run['errorCost']+run['reverseOppurtunityCost']
# accumulate error time to schedule
simulatedSchedule['errorTime']+= queue['errorTime']
# accumulate run costs to queue
queue['directCost'] += run['directCost']
queue['oppurtunityCost'] += run['oppurtunityCost']
queue['reverseOppurtunityCost'] += run['reverseOppurtunityCost']
queue['errorCost'] += run['errorCost']
queue['totalCost'] += run['totalCost']
# accumulate run costs to schedule
simulatedSchedule['directCost']+= run['directCost']
simulatedSchedule['oppurtunityCost']+= run['oppurtunityCost']
simulatedSchedule['reverseOppurtunityCost'] += run['reverseOppurtunityCost']
simulatedSchedule['errorCost']+= run['errorCost']
simulatedSchedule['totalCost']+= run['totalCost']
# check for longest time taken by any schedule and set as schedule time
maxTime = 0.0
for queue in simulatedSchedule['queues']:
if queue['requiredTime'] > maxTime:
maxTime = queue['requiredTime']
simulatedSchedule['requiredTime'] = maxTime
# calculate overhead cost of operation of the schedule
simulatedSchedule['overheadCost'] = simulatedSchedule['requiredTime']*simulatedSchedule['overheadCostRate']
# apply overhead to schedule total
simulatedSchedule['totalCost'] += simulatedSchedule['overheadCost']
return simulatedSchedule
def SimpleScheduleValidator(schedule,orders):
validFlag = True
numOfOrders = 0
seenOrders = set()
for queue in schedule['queues']:
truck = queue['truck']
for run in queue['runs']:
if len(run['orders']) > truck['maxOrdersPerRun']:
validFlag = False
runQuantity = run['quantity']
for order in run['orders']:
numOfOrders += 1
if order['id'] in seenOrders:
validFlag = False
else:
seenOrders.add(order['id'])
if runQuantity > truck['capacity']:
validFlag = False
if numOfOrders != len(orders):
print(numOfOrders,' orders scheduled out of ',len(orders))
validFlag = False
return validFlag
def RandomOptimizer(trucks,orders,attempts,verbose):
canidateSchedules = []
bestCost = inf
bestSchedule = SimpleScheduleRunner(RandomRouter(trucks,orders),False)
for ii in range(attempts):
if ii%1000 == 0:
if verbose:
print('RandomOptimizer testing iteration # {0:d}'.format(ii))
canidateSchedules.append(SimpleScheduleRunner(RandomRouter(trucks,orders),False))
if verbose:
print('comparing canidate schedules')
for schedule in canidateSchedules:
if schedule['totalCost'] < bestCost:
bestSchedule = schedule
bestCost = schedule['totalCost']
if verbose:
print('\tRandomOptimizer cost {0:.2f}'.format(bestCost))
return bestSchedule
'''
print('using randomOptimizer')
exampleSchedule = RandomOptimizer(exampleTrucks,exampleOrders,10000)
print('schedule passes validation? ', SimpleScheduleValidator(exampleSchedule,exampleOrders))
PrettyPrintSimulatedSchedule(exampleSchedule)
print('total cost of schedule: $',exampleSchedule['totalCost'])
print('total time of schedule: ',exampleSchedule['requiredTime'],'h')
'''
'''
print('using HeuristicRouter')
exampleSchedule = HeuristicRouter(exampleTrucks,exampleOrders)
exampleSchedule = SimpleScheduleEval(exampleSchedule)
print(exampleSchedule)
print('schedule passes validation? ', SimpleScheduleValidator(exampleSchedule,exampleOrders))
print('total cost of schedule: $',exampleSchedule['totalCost'])
print('total time of schedule: ',exampleSchedule['requiredTime'],'h')
'''
'''
print('using RandomRouter')
exampleSchedule = RandomRouter(exampleTrucks,exampleOrders)
exampleSchedule = SimpleScheduleEval(exampleSchedule)
print(exampleSchedule)
print('schedule passes validation? ', SimpleScheduleValidator(exampleSchedule,exampleOrders))
print('total cost of schedule: $',exampleSchedule['totalCost'])
print('total time of schedule: ',exampleSchedule['requiredTime'],'h')
'''