forked from Mapotempo/optimizer-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
optimizer_wrapper.rb
813 lines (697 loc) · 33.1 KB
/
optimizer_wrapper.rb
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
# Copyright © Mapotempo, 2016
#
# This file is part of Mapotempo.
#
# Mapotempo is free software. You can redistribute it and/or
# modify since you respect the terms of the GNU Affero General
# Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# Mapotempo is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the Licenses for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Mapotempo. If not, see:
# <http://www.gnu.org/licenses/agpl.html>
#
# frozen_string_literal: true
require_all 'lib'
require_all 'util'
RELATION_ZIP_CLUSTER_CAN_HANDLE = %i[
maximum_day_lapse
maximum_duration_lapse
minimum_day_lapse
minimum_duration_lapse
vehicle_group_duration
vehicle_group_duration_on_months
vehicle_group_duration_on_weeks
vehicle_group_number
vehicle_trips
].freeze
module OptimizerWrapper
def self.wrapper_vrp(api_key, profile, vrp, checksum, job_id = nil)
inapplicable_services = []
apply_zones(vrp)
adjust_vehicles_duration(vrp)
Filters.filter(vrp)
vrp.configuration.resolution.repetition ||=
if !vrp.configuration.preprocessing.partitions.empty? && vrp.periodic_heuristic?
config[:solve][:repetition]
else
1
end
services_vrps =
split_independent_vrp(vrp).map{ |vrp_element|
{
service: profile[:services][:vrp].find{ |s|
inapplicable = config[:services][s].inapplicable_solve?(vrp_element)
if inapplicable.empty?
log "Select service #{s}"
true
else
inapplicable_services << inapplicable
log "Skip inapplicable #{s}: #{inapplicable.join(', ')}"
false
end
},
vrp: vrp_element,
dicho_level: 0,
dicho_denominators: [1],
dicho_sides: [0]
}
}
if services_vrps.any?{ |sv| !sv[:service] }
raise UnsupportedProblemError.new('Cannot apply any of the solver services', inapplicable_services)
elsif config[:solve][:synchronously] || (
services_vrps.size == 1 &&
!vrp.configuration.preprocessing.cluster_threshold &&
config[:services][services_vrps[0][:service]].solve_synchronous?(vrp)
)
# The job seems easy enough to perform it with the server
define_main_process(services_vrps, job_id)
else
# Delegate the job to a worker (expire is defined resque config)
job_id = Job.enqueue_to(profile[:queue], Job, services_vrps: Base64.encode64(Marshal.dump(services_vrps)),
api_key: api_key,
checksum: checksum,
pids: [])
JobList.add(api_key, job_id)
job_id
end
end
def self.define_main_process(services_vrps, job = nil, &block)
log "--> define_main_process #{services_vrps.size} VRPs"
log "activities: #{services_vrps.map{ |sv| sv[:vrp].services.size }}"
log "vehicles: #{services_vrps.map{ |sv| sv[:vrp].vehicles.size }}"
log "configuration.resolution.vehicle_limit: "\
"#{services_vrps.map{ |sv| sv[:vrp].configuration.resolution.vehicle_limit }}"
log "min_durations: #{services_vrps.map{ |sv| sv[:vrp].configuration.resolution.minimum_duration&.round }}"
log "max_durations: #{services_vrps.map{ |sv| sv[:vrp].configuration.resolution.duration&.round }}"
tic = Time.now
expected_activity_count = services_vrps.collect{ |sv| sv[:vrp].visits }.sum
several_service_vrps = Interpreters::SeveralSolutions.expand_similar_resolutions(services_vrps)
several_solutions =
several_service_vrps.collect.with_index{ |current_service_vrps, solution_index|
callback_main =
lambda { |wrapper, avancement, total, message, cost = nil, time = nil, solution = nil|
add = "solution #{solution_index + 1}/#{several_service_vrps.size}"
msg = several_service_vrps.size > 1 && concat_avancement(add, message) || message
block&.call(wrapper, avancement, total, msg, cost, time, solution)
}
join_independent_vrps(current_service_vrps, callback_main) { |service_vrp, callback_join|
repeated_results = []
service_vrp_repeats = Interpreters::SeveralSolutions.expand_repetitions(service_vrp)
service_vrp_repeats.each_with_index{ |repeated_service_vrp, repetition_index|
repeated_results <<
define_process(repeated_service_vrp, job) { |wrapper, avancement, total, message, cost, time, solution|
add = "repetition #{repetition_index + 1}/#{service_vrp_repeats.size}"
msg = service_vrp_repeats.size > 1 && concat_avancement(add, message) || message
callback_join&.call(wrapper, avancement, total, msg, cost, time, solution)
}
Models.delete_all # needed to prevent duplicate ids because expand_repeat uses Marshal.load/dump
break if repeated_results.last.unassigned_stops.empty? # No need to repeat more, cannot do better than this
}
# NOTE: the only criteria is number of unassigneds at the moment so if there is ever a solution with zero
# unassigned, the loop is cut early. That is, if the criteria below is evolved, the above `break if` condition
# should be modified in a similar fashion)
# find the best result and its index
(result, position) = repeated_results.each.with_index(1).min_by { |rresult, _| rresult.unassigned_stops.size }
log "#{job}_repetition - #{repeated_results.collect{ |r| r.unassigned_stops.size }} : "\
"chose to keep the #{position.ordinalize} solution"
result
}
}
# demo solver returns a fixed solution
unless services_vrps.collect{ |sv| sv[:service] }.uniq == [:demo]
check_solutions_consistency(expected_activity_count, several_solutions)
end
nb_routes = several_solutions.sum(&:count_used_routes)
nb_unassigned = several_solutions.sum(&:count_unassigned_services)
percent_unassigned = (100.0 * nb_unassigned / expected_activity_count).round(1)
log "result - #{nb_unassigned} of #{expected_activity_count} (#{percent_unassigned}%) unassigned activities"
log "result - #{nb_routes} of #{services_vrps.sum{ |sv| sv[:vrp].vehicles.size }} vehicles used"
several_solutions
ensure
log "<-- define_main_process elapsed: #{(Time.now - tic).round(2)} sec"
end
# Mutually recursive method
def self.define_process(service_vrp, job = nil, &block)
vrp = service_vrp[:vrp]
dicho_level = service_vrp[:dicho_level].to_i
split_level = service_vrp[:split_level].to_i
shipment_size = vrp.relations.count{ |r| r.type == :shipment }
# Repopulate Objects which are referenced by others using ids but deleted by the multiple sub problem creations
vrp.units.each{ |unit| Models::Unit.insert(unit) } if Models::Unit.all.empty?
vrp.points.each{ |point| Models::Point.insert(point) } if Models::Point.all.empty?
vrp.services.each{ |s| Models::Service.insert(s) } if Models::Service.all.empty?
log "--> define_process VRP (service: #{vrp.services.size} including #{shipment_size} shipment relations, "\
"vehicle: #{vrp.vehicles.size}, v_limit: #{vrp.configuration.resolution.vehicle_limit}) "\
"with levels (dicho: #{dicho_level}, split: #{split_level})"
log "min_duration #{vrp.configuration.resolution.minimum_duration&.round} "\
"max_duration #{vrp.configuration.resolution.duration&.round}"
tic = Time.now
expected_activity_count = vrp.visits
# Calls define_process recursively
solution ||= Interpreters::SplitClustering.split_clusters(service_vrp, job, &block)
# Calls define_process recursively
solution ||= Interpreters::Dichotomous.dichotomous_heuristic(service_vrp, job, &block)
solution ||= solve(service_vrp, job, block)
Cleanse.cleanse(vrp, solution)
if service_vrp[:service] != :demo # demo solver returns a fixed solution
check_solutions_consistency(expected_activity_count, [solution])
end
log "<-- define_process levels (dicho: #{dicho_level}, split: #{split_level}) "\
"elapsed: #{(Time.now - tic).round(2)} sec"
solution.configuration.deprecated_headers = vrp.configuration.restitution.use_deprecated_csv_headers
solution
end
def self.solve(service_vrp, job = nil, block = nil)
vrp = service_vrp[:vrp]
service = service_vrp[:service]
optim_wrapper_config = OptimizerWrapper.config[:services][service]
dicho_level = service_vrp[:dicho_level]
shipment_size = vrp.relations.count{ |r| r.type == :shipment }
log "--> optim_wrap::solve VRP (service: #{vrp.services.size} including #{shipment_size} shipment relations, " \
"vehicle: #{vrp.vehicles.size} v_limit: #{vrp.configuration.resolution.vehicle_limit}) with levels " \
"(dicho: #{service_vrp[:dicho_level]}, split: #{service_vrp[:split_level].to_i})", level: :debug
tic = Time.now
optim_solution = nil
unfeasible_services = {}
if !vrp.subtours.empty?
multi_modal = Interpreters::MultiModal.new(vrp, service)
optim_solution = multi_modal.multimodal_routes
elsif vrp.vehicles.empty? || vrp.services.empty?
unassigned_with_reason =
vrp.services.map{ |s|
Models::Solution::Stop.new(s, reason: 'No vehicle available for this service')
}
optim_solution = vrp.empty_solution(service.to_s, unassigned_with_reason, false)
else
unfeasible_services = config[:services][service].detect_unfeasible_services(vrp)
# TODO: Eliminate the points which has no feasible vehicle or service
vrp.compute_matrix(&block)
config[:services][service].check_distances(vrp, unfeasible_services)
# TODO: Eliminate the vehicles which cannot serve any
# service vrp.services.all?{ |s| s.vehicle_compatibility[v.id] == false }
# Remove infeasible services
services_to_reinject = []
unfeasible_services.each_key{ |una_service_id|
index = vrp.services.find_index{ |s| s.id == una_service_id }
if index
services_to_reinject << vrp.services.slice!(index)
end
}
# vrp.periodic_heuristic check the first_solution_stategy which may change right after periodic heuristic
periodic_heuristic_flag = vrp.periodic_heuristic?
# TODO: refactor with dedicated class
if vrp.schedule?
periodic = Interpreters::PeriodicVisits.new(vrp)
vrp = periodic.expand(vrp, job, &block)
if vrp.periodic_heuristic?
optim_solution = vrp.configuration.preprocessing.heuristic_result
if vrp.configuration.resolution.solver
first_solution_strategy = vrp.configuration.preprocessing.first_solution_strategy
first_solution_strategy.delete('periodic')
first_solution_strategy << 'global_cheapest_arc' if first_solution_strategy.empty?
end
end
end
if vrp.configuration.resolution.solver && (!periodic_heuristic_flag || vrp.services.size < 200)
if vrp.configuration.preprocessing.cluster_threshold.to_f.positive?
block&.call(nil, nil, nil,
"process clique clustering : threshold "\
"(#{vrp.configuration.preprocessing.cluster_threshold.to_f}) ",
nil, nil, nil)
end
optim_solution =
clique_cluster(vrp, vrp.configuration.preprocessing.cluster_threshold) { |cliqued_vrp|
time_start = Time.now
optim_wrapper_config.simplify_constraints(cliqued_vrp)
block&.call(nil, 0, nil, 'run optimization', nil, nil, nil) if dicho_level.nil? || dicho_level.zero?
# TODO: Move select best heuristic in each solver
Interpreters::SeveralSolutions.custom_heuristics(service, vrp, block)
cliqued_solution =
optim_wrapper_config.solve(
cliqued_vrp,
job,
proc{ |pids|
next unless job
result_object = Result.get(job) || { pids: [] }
result_object[:pids] = pids
Result.set(job, result_object)
}
) { |wrapper, avancement, total, _message, cost, _time, solution|
solution =
if solution.is_a?(Models::Solution)
optim_wrapper_config.patch_simplified_constraints_in_solution(solution, cliqued_vrp)
end
if dicho_level.nil? || dicho_level.zero?
block&.call(wrapper, avancement, total,
'run optimization, iterations', cost, (Time.now - time_start) * 1000, solution)
end
solution
}
optim_wrapper_config.patch_and_rewind_simplified_constraints(cliqued_vrp, cliqued_solution)
if cliqued_solution.is_a?(Models::Solution)
block&.call(nil, nil, nil, 'run optimization', nil, nil, nil) if dicho_level&.positive?
cliqued_solution
elsif cliqued_solution.status == :killed
next
elsif cliqued_solution.is_a?(String)
raise cliqued_solution
elsif (vrp.configuration.preprocessing.heuristic_result.nil? ||
vrp.configuration.preprocessing.heuristic_result.empty?) &&
!vrp.configuration.restitution.allow_empty_result
puts cliqued_solution
raise 'No solution provided'
end
}
end
# Reintegrate unfeasible services deleted from vrp.services to help ortools
vrp.services += services_to_reinject
end
if optim_solution # Job might have been killed
if periodic_heuristic_flag
periodic_solution = vrp.configuration.preprocessing.heuristic_result
# TODO: uniformize cost computation to define a comparison operator between solutions
if periodic_solution.unassigned_stops.size < optim_solution.unassigned_stops.size
optim_solution = periodic_solution
end
end
optim_solution.name = vrp.name
optim_solution.configuration.csv = vrp.configuration.restitution.csv
optim_solution.configuration.geometry = vrp.configuration.restitution.geometry
optim_solution.unassigned_stops += unfeasible_services.values.flatten
optim_solution.parse(vrp)
if vrp.configuration.preprocessing.first_solution_strategy
optim_solution.heuristic_synthesis = vrp.configuration.preprocessing.heuristic_synthesis
end
else
optim_solution = vrp.empty_solution(service, unfeasible_services.values)
end
log "<-- optim_wrap::solve elapsed: #{(Time.now - tic).round(2)}sec", level: :debug
optim_solution
end
def self.compute_independent_skills_sets(vrp, mission_skills, vehicle_skills)
independent_skills = Array.new(mission_skills.size) { |i| [i] }
correspondance_hash = vrp.vehicles.map{ |vehicle|
[vehicle.id, vehicle_skills.index{ |skills| skills == vehicle.skills.flatten }]
}.to_h
# Build the compatibility table between service and vehicle skills
# As reminder vehicle skills are defined as an OR condition
# When the services skills are defined as an AND condition
compatibility_table = mission_skills.map.with_index{ |_skills, _index| Array.new(vehicle_skills.size) { false } }
mission_skills.each.with_index{ |m_skills, m_index|
vehicle_skills.each.with_index{ |v_skills, v_index|
compatibility_table[m_index][v_index] = true if (m_skills - v_skills).empty?
}
}
vrp.relations.select{ |relation|
Models::Relation::ON_VEHICLES_TYPES.include?(relation.type)
}.each{ |relation|
v_skills_indices = relation.linked_vehicle_ids.map{ |v_id| correspondance_hash[v_id] }
mission_skill_indices = []
# We check if there is at least one vehicle of the relation compatible with a mission skills set
v_skills_indices.each{ |v_index|
mission_skills.each_index.each{ |m_index|
mission_skill_indices << m_index if compatibility_table[m_index][v_index]
}
}
next if mission_skill_indices.empty?
mission_skill_indices.uniq!
# If at last one vehicle of the relation is compatible, then we propagate it,
# as we want all the relation vehicles to belong to the same problem
v_skills_indices.each{ |v_index|
mission_skill_indices.each{ |m_index|
compatibility_table[m_index][v_index] = true
}
}
}
mission_skills.size.times.each{ |a_line|
((a_line + 1)..mission_skills.size - 1).each{ |b_line|
next if (compatibility_table[a_line].select.with_index{ |state, index|
state & compatibility_table[b_line][index]
}).empty?
b_set = independent_skills.find{ |set| set.include?(b_line) && set.exclude?(a_line) }
next if b_set.nil?
# Skills indices are merged as they have at least a vehicle in common
independent_skills.delete(b_set)
set_index = independent_skills.index{ |set| set.include?(a_line) }
independent_skills[set_index] += b_set
}
}
# Independent skill sets : Original skills are retrieved
independent_skills.map{ |index_set|
index_set.collect{ |index| mission_skills[index] }
}
end
def self.build_independent_vrps(vrp, skill_sets, vehicle_indices_by_skills, skill_service_ids)
unused_vehicle_indices = (0..vrp.vehicles.size - 1).to_a
independent_vrps =
skill_sets.collect{ |skills_set|
# Compatible problem ids are retrieved
vehicle_indices = skills_set.flat_map{ |skills|
vehicle_indices_by_skills.select{ |k, _v| (skills - k).empty? }.flat_map{ |_k, v| v }
}.uniq
vehicle_indices.each{ |index| unused_vehicle_indices.delete(index) }
service_ids = skills_set.flat_map{ |skills| skill_service_ids[skills] }
service_vrp = { service: nil, vrp: vrp }
Interpreters::SplitClustering.build_partial_service_vrp(service_vrp,
service_ids,
vehicle_indices)[:vrp]
}
total_size =
vrp.services.all?{ |service| service.sticky_vehicle_ids.any? } ? vrp.vehicles.size :
independent_vrps.collect{ |s_vrp| s_vrp.services.size * [1, s_vrp.vehicles.size].min }.sum
independent_vrps.each{ |sub_vrp|
# If one sub vrp has no vehicle or no service, duration can be zero.
# We only split duration among sub_service_vrps that have at least one vehicle and one service.
this_sub_size =
vrp.services.all?{ |service| service.sticky_vehicle_ids.any? } ? sub_vrp.vehicles.size :
sub_vrp.services.size * [1, sub_vrp.vehicles.size].min
Interpreters::SplitClustering.adjust_independent_duration(sub_vrp, this_sub_size, total_size)
}
return independent_vrps if unused_vehicle_indices.empty?
sub_service_vrp = Interpreters::SplitClustering.build_partial_service_vrp({ vrp: vrp }, [], unused_vehicle_indices)
independent_vrps.push(sub_service_vrp[:vrp])
independent_vrps
end
def self.split_independent_vrp(vrp)
# Don't split vrp if
# - No vehicle
# - No service
# - there is multimodal subtours
return [vrp] if (vrp.vehicles.size <= 1) || vrp.services.empty? || vrp.subtours&.any? # there might be zero services
# - there is a service with no skills (or sticky vehicle see: expand_data.rb:sticky_as_skills)
mission_skills = vrp.services.map(&:skills).uniq
return [vrp] if mission_skills.include?([])
if vrp.relations.any?{ |r| Models::Relation::FORCING_RELATIONS.include?(r.type) }
log 'split_independent_vrp does not support vehicle_trips and other FORCING_RELATIONS yet', level: :warn
return [vrp]
end
# Generate Services data
grouped_services = vrp.services.group_by(&:skills)
skill_service_ids = Hash.new{ [] }
grouped_services.each{ |skills, missions| skill_service_ids[skills] += missions.map(&:id) }
# Generate Vehicles data
if vrp.vehicles.any?{ |v| v.skills.size > 1 } # alternative skills
log 'split_independent_vrp does not support alternative set of vehicle skills', level: :warn
# Be careful in case the alternative skills are supported again !
# The vehicle.skills.flatten down below won't work
return [vrp]
end
grouped_vehicles = vrp.vehicles.group_by{ |vehicle| vehicle.skills.flatten }
vehicle_skills = grouped_vehicles.keys.uniq
vehicle_indices_by_skills = Hash.new{ [] }
grouped_vehicles.each{ |skills, vehicles|
vehicle_indices_by_skills[skills] += vehicles.map{ |vehicle| vrp.vehicles.find_index(vehicle) }
}
independent_skill_sets = compute_independent_skills_sets(vrp, mission_skills, vehicle_skills)
build_independent_vrps(vrp, independent_skill_sets, vehicle_indices_by_skills, skill_service_ids)
end
def self.join_independent_vrps(services_vrps, callback)
solutions =
services_vrps.each_with_index.map{ |service_vrp, i|
block =
if services_vrps.size > 1 && !callback.nil?
proc { |wrapper, avancement, total, message, cost = nil, time = nil, solution = nil|
add = "split independent process #{i + 1}/#{services_vrps.size}"
msg = concat_avancement(add, message) || message
callback&.call(wrapper, avancement, total, msg, cost, time, solution)
}
else
callback
end
yield(service_vrp, block)
}
solutions.reduce(&:+)
end
def self.concat_avancement(addition, message)
return unless message
addition + ' - ' + message
end
def self.job_list(api_key)
(JobList.get(api_key) || []).collect{ |e|
if job = Resque::Plugins::Status::Hash.get(e) # rubocop: disable Lint/AssignmentInCondition
{
time: job.time,
uuid: job.uuid,
status: job.status,
avancement: job.message,
checksum: job.options && job.options['checksum']
}
else
Result.remove(api_key, e)
end
}.compact
end
def self.job_kill(_api_key, id)
res = Result.get(id)
Resque::Plugins::Status::Hash.kill(id) # Worker will be killed at the next call of at() method
# Only kill the solver process if a pid has been set
if res && res[:pids] && !res[:pids].empty?
res[:pids].each{ |pid|
begin
Process.kill('KILL', pid)
rescue Errno::ESRCH
nil
end
}
end
@killed = true
end
def self.job_remove(api_key, id)
Result.remove(api_key, id)
# remove only queued jobs
if Resque::Plugins::Status::Hash.get(id)
Job.dequeue(Job, id)
Resque::Plugins::Status::Hash.remove(id)
end
end
class << self
private
def check_solutions_consistency(expected_value, solutions)
solutions.each{ |solution|
if solution.routes.any?{ |route| route.stops.any?{ |a| a.info.waiting_time < 0 } }
log 'Computed waiting times are invalid', level: :warn
raise 'Computed waiting times are invalid' if ENV['APP_ENV'] != 'production'
end
waiting_times = solution.routes.map{ |route| route.info.total_waiting_time }.compact
durations =
solution.routes.map{ |route|
route.stops.map{ |stop|
stop.info.departure_time && (stop.info.departure_time - stop.info.begin_time)
}.compact
}
previous_point_id = nil
setup_durations =
solution.routes.map{ |route|
route.stops.map{ |stop|
next if stop.type == :rest
setup = (previous_point_id.nil? || previous_point_id != stop.activity.point_id) &&
stop.activity.setup_duration_on(route.vehicle) || 0
previous_point_id = stop.activity.point_id
setup
}.compact
}
total_time = solution.info.total_time || 0
total_travel_time = solution.info.total_travel_time || 0
if total_time != (total_travel_time || 0) +
waiting_times.sum +
(setup_durations.flatten.reduce(&:+) || 0) +
(durations.flatten.reduce(&:+) || 0)
log_string = 'Computed times are invalid'
tags = {
total_time: total_time,
total_travel_time: total_travel_time,
waiting_time: waiting_times.sum,
setup_durations: setup_durations.flatten.reduce(&:+),
durations: durations.flatten.reduce(&:+)
}
log log_string, tags.merge(level: :warn)
raise 'Computed times are invalid' if ENV['APP_ENV'] != 'production'
end
nb_assigned = solution.count_assigned_services
nb_unassigned = solution.count_unassigned_services
if expected_value != nb_assigned + nb_unassigned # rubocop:disable Style/Next for error handling
tags = { expected: expected_value, assigned: nb_assigned, unassigned: nb_unassigned }
log 'Wrong number of visits returned in result', tags.merge(level: :warn)
raise 'Wrong number of visits returned in result' if ENV['APP_ENV'] != 'production'
end
}
end
def adjust_vehicles_duration(vrp)
vrp.vehicles.select{ |v| v.duration? && !v.rests.empty? }.each{ |v|
v.rests.each{ |r|
v.duration += r.duration
}
}
end
def apply_zones(vrp)
vrp.zones.each{ |zone|
next if zone.allocations.empty?
zone.vehicles =
if zone.allocations.size == 1
zone.allocations[0].collect{ |vehicle_id| vrp.vehicles.find{ |vehicle| vehicle.id == vehicle_id } }.compact
else
zone.allocations.collect{ |alloc| vrp.vehicles.find{ |vehicle| vehicle.id == alloc.first } }.compact
end
next if zone.vehicles.compact.empty?
zone.vehicles.each{ |vehicle|
vehicle.skills.each{ |skillset| skillset << zone[:id].to_sym }
}
}
return unless vrp.points.all?(&:location)
vrp.zones.each{ |zone|
related_ids = vrp.services.collect{ |service|
activity_loc = service.activity.point.location
next unless zone.inside(activity_loc.lat, activity_loc.lon)
service.skills += [zone[:id].to_sym]
service.id
}.compact
# Remove zone allocation verification if we need to assign zone without vehicle affectation together
next unless zone.allocations.size > 1 && related_ids.size > 1
vrp.relations += [{
type: :same_route,
linked_ids: related_ids.flatten,
}]
}
end
def clique_cluster_candidate?(vrp, cluster_threshold)
cluster_threshold && vrp.matrices.any? && vrp.services.all?(&:activity) && vrp.rests.empty? &&
!vrp.schedule? && (vrp.relations.map(&:type) - RELATION_ZIP_CLUSTER_CAN_HANDLE).empty? &&
vrp.services.none?{ |s| s.activity.timewindows.any? }
end
def clique_cluster(vrp, cluster_threshold)
zip_condition = clique_cluster_candidate?(vrp, cluster_threshold)
if zip_condition
if vrp.services.any?{ |s| s.activities.any? }
raise UnsupportedProblemError('Threshold is not supported yet if one service has serveral activies.')
end
original_services = Array.new(vrp.services.size){ |i| vrp.services[i].clone }
clusters = zip_cluster(vrp, cluster_threshold)
end
solution = yield(vrp)
if zip_condition
vrp.services = original_services
unzip_cluster(solution, clusters, vrp)
else
solution
end
end
def zip_cluster(vrp, cluster_threshold)
return nil if vrp.services.empty?
c = Ai4r::Clusterers::CompleteLinkageMaxDistance.new
matrix = vrp.matrices[0][vrp.vehicles[0].router_dimension.to_sym]
used_units = {}
vrp.services.each{ |s| s.quantities.each{ |q| used_units[q.unit.id] = true if q.value != 0 } }
no_useful_capacities =
vrp.vehicles.none?{ |v|
v.capacities.any?{ |capa| capa.limit && used_units.key?(capa.unit.id) }
}
c.distance_function =
lambda do |a, b|
aa = vrp.services[a[0]]
bb = vrp.services[b[0]]
(no_useful_capacities || (aa.quantities&.empty? && bb.quantities&.empty?)) && aa.skills == bb.skills ?
matrix[aa.activity.point.matrix_index][bb.activity.point.matrix_index] : Float::INFINITY
end
data_set = Ai4r::Data::DataSet.new(data_items: (0..(vrp.services.length - 1)).collect{ |i| [i] })
clusterer = c.build(data_set, cluster_threshold)
new_size = clusterer.clusters.size
# Build replacement list
new_services = Array.new(new_size)
clusterer.clusters.each_with_index do |cluster, i|
new_services[i] = vrp.services[cluster.data_items[0][0]]
cluster_ids = cluster.data_items.map{ |arr| vrp.services[arr[0]].id }
route_index = vrp.routes.index{ |route| route.mission_ids & cluster_ids }
if route_index
ref_id =
vrp.routes[route_index].mission_ids.find{ |mission_id|
cluster_ids.include?(mission_id)
}
vrp.routes.each{ |route|
route.mission_ids.delete_if{ |mission_id|
cluster_ids.include?(mission_id) unless mission_id == ref_id
}
}
vrp.routes[route_index].mission_ids.map!{ |mission_id|
if cluster_ids.include?(mission_id)
new_services[i].id
else
mission_id
end
}
end
new_services[i].activity.duration =
cluster.data_items.map{ |di| vrp.services[di[0]].activity.duration }.reduce(&:+)
new_services[i].priority = cluster.data_items.map{ |di| vrp.services[di[0]].priority }.min
end
# Fill new vrp
vrp.services = new_services
clusterer.clusters
end
def unzip_cluster(solution, clusters, original_vrp)
return solution unless clusters
new_routes =
solution.routes.map{ |route|
previous_stop = nil
new_stops =
route.stops.flat_map.with_index{ |stop, act_index|
if stop.service_id
service_index = original_vrp.services.index{ |s| s.id == stop.service_id }
cluster_index = clusters.index{ |z| z.data_items.flatten.include? service_index }
if cluster_index && clusters[cluster_index].data_items.size > 1
cluster_data_indices = clusters[cluster_index].data_items.collect{ |i| i[0] }
cluster_services = cluster_data_indices.map{ |index| original_vrp.services[index] }
next_stop = route.stops[act_index + 1..route.stops.size].find{ |act| act.activity.point }
tsp = TSPHelper.create_tsp(original_vrp,
vehicle: route.vehicle,
services: cluster_services,
start_point: previous_stop.activity.point,
end_point: next_stop&.activity&.point,
begin_time: previous_stop.info.end_time)
tsp_solution = TSPHelper.solve(tsp)
previous_stop = tsp_solution.routes[0].stops.reverse.find(&:service_id)
service_stops = tsp_solution.routes[0].stops.select{ |a| a.type == :service }
service_stops.map!{ |service_stop|
original_service = original_vrp.services.find{ |service| service.id == service_stop.id }
stop = Models::Solution::Stop.new(original_service, info: service_stop.info)
}
shift = tsp_solution.routes[0].info.total_travel_time - stop.info.travel_time -
next_stop&.info&.travel_time || 0
route.shift_route_times(shift, act_index + 1) if act_index < route.stops.size
service_stops
else
stop
end
else
previous_stop = stop.activity.point ? stop : previous_stop
stop
end
}
Models::Solution::Route.new(stops: new_stops, vehicle: route.vehicle)
}
new_unassigned =
solution.unassigned_stops.flat_map{ |un|
if un.service_id
service_index = original_vrp.services.index{ |s| s.id == un.service_id }
cluster_index = clusters.index{ |z| z.data_items.flatten.include? service_index }
if cluster_index && clusters[cluster_index].data_items.size > 1
cluster_data_indices = clusters[cluster_index].data_items.collect{ |i| i[0] }
cluster_data_indices.map{ |index|
Models::Solution::Stop.new(original_vrp.services[index])
}
else
un
end
else
un
end
}
solution = Models::Solution.new(routes: new_routes, unassigned_stops: new_unassigned)
solution.parse(original_vrp, compute_dimensions: true)
end
end
end