diff --git a/CHANGELOG.md b/CHANGELOG.md index d89a48eb0..35df46c27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ ### Removed - `geometry_polyline` parameter now be provided through `geometry` parameter [#165](https://github.com/Mapotempo/optimizer-api/pull/165) +- Field `trips` in vehicle model. Use `vehicle_trips` relation instead [#123](https://github.com/Mapotempo/optimizer-api/pull/123) ### Fixed diff --git a/api/v01/entities/vrp_input.rb b/api/v01/entities/vrp_input.rb index 8de7d5517..0c4095f67 100644 --- a/api/v01/entities/vrp_input.rb +++ b/api/v01/entities/vrp_input.rb @@ -488,7 +488,6 @@ module VrpVehicles optional(:force_start, type: Boolean, documentation: { hidden: true }, desc: '[ DEPRECATED ]') optional(:shift_preference, type: String, values: ['force_start', 'force_end', 'minimize_span'], desc: 'Force the vehicle to start as soon as the vehicle timewindow is open, as late as possible or let vehicle start at any time. Not available with periodic heuristic, it will always leave as soon as possible.') - optional(:trips, type: Integer, default: 1, desc: 'The number of times a vehicle is allowed to return to the depot within its route. Not available with periodic heuristic.') optional :matrix_id, type: String, desc: 'Related matrix, if already defined' optional :value_matrix_id, type: String, desc: 'If any value matrix defined, related matrix index' diff --git a/lib/interpreters/multi_trips.rb b/lib/interpreters/multi_trips.rb deleted file mode 100644 index 11bef50a6..000000000 --- a/lib/interpreters/multi_trips.rb +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright © Mapotempo, 2018 -# -# 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: -# -# - -require './models/relation' - -module Interpreters - class MultiTrips - def expand(vrp) - vrp.vehicles = vrp.vehicles.collect{ |vehicle| - if vehicle.trips > 1 - new_ids = Array.new(vehicle.trips) { |index| vehicle.id + '_trip_' + index.to_s } - new_vehicles = new_ids.collect{ |id| - new_vehicle = Marshal.load(Marshal.dump(vehicle)) - new_vehicle.original_id = new_vehicle.id - new_vehicle.id = id - new_vehicle.trips = 1 - new_vehicle - } - - vrp.relations.select{ |relation| relation.linked_vehicle_ids.include?(vehicle.id) }.each{ |relation| - relation.linked_vehicle_ids -= [vehicle.id] - relation.linked_vehicle_ids += new_ids - } - - vrp.relations += [Models::Relation.new(type: :vehicle_trips, linked_vehicle_ids: new_ids)] - # vrp.relations += [Models::Relation.new(type: :vehicle_group_duration, linked_vehicle_ids: new_ids, lapse: vehicle.duration)] if vehicle.duration # TODO: Requires a complete rework of overall_duration - # vrp.relations += [Models::Relation.new(type: :vehicle_group_duration, linked_vehicle_ids: new_ids, lapse: vehicle.overall_duration)] if vehicle.overall_duration # TODO: Requires a complete rework of overall_duration - - vrp.services.select{ |service| service.sticky_vehicles.any?{ |sticky_vehicle| sticky_vehicle.id == vehicle.id } }.each{ |service| - service.sticky_vehicles -= [vehicle.id] - service.sticky_vehicles += new_ids - } - - new_vehicles - else - vehicle - end - }.flatten - vrp - end - end -end diff --git a/models/vehicle.rb b/models/vehicle.rb index ed03c1db5..b178d2b8e 100644 --- a/models/vehicle.rb +++ b/models/vehicle.rb @@ -57,7 +57,6 @@ class Vehicle < Base field :force_start, default: false field :shift_preference, default: :minimize_span - field :trips, default: 1 field :duration, default: nil field :overall_duration, default: nil field :distance, default: nil @@ -92,7 +91,6 @@ class Vehicle < Base # validates_numericality_of :global_day_index, allow_nil: true # validates_inclusion_of :router_dimension, in: %w( time distance ) # validates_inclusion_of :shift_preference, in: %w( force_start force_end minimize_span ) - # validates_numericality_of :trips, greater_than_or_equal_to: 0 # validates_numericality_of :speed_multiplier # validates_numericality_of :duration, greater_than_or_equal_to: 0 # validates_numericality_of :overall_duration, greater_than_or_equal_to: 0 diff --git a/optimizer_wrapper.rb b/optimizer_wrapper.rb index 5cad82d03..6cb5deefc 100644 --- a/optimizer_wrapper.rb +++ b/optimizer_wrapper.rb @@ -24,7 +24,6 @@ require './lib/routers/router_wrapper.rb' require './lib/interpreters/multi_modal.rb' -require './lib/interpreters/multi_trips.rb' require './lib/interpreters/periodic_visits.rb' require './lib/interpreters/split_clustering.rb' require './lib/interpreters/compute_several_solutions.rb' @@ -200,8 +199,6 @@ def self.solve(service_vrp, job = nil, block = nil) tic = Time.now - Interpreters::MultiTrips.new.expand(vrp) - optim_result = nil unfeasible_services = [] diff --git a/test/fixtures/balanced_split_under_nonuniform_sq_timewindows.dump b/test/fixtures/balanced_split_under_nonuniform_sq_timewindows.dump index e2ffadf90..cef7435ae 100644 Binary files a/test/fixtures/balanced_split_under_nonuniform_sq_timewindows.dump and b/test/fixtures/balanced_split_under_nonuniform_sq_timewindows.dump differ diff --git a/test/fixtures/callage_freq.dump b/test/fixtures/callage_freq.dump index 11ac66b9d..c1ff2a057 100644 Binary files a/test/fixtures/callage_freq.dump and b/test/fixtures/callage_freq.dump differ diff --git a/test/fixtures/cluster_dichotomious.dump b/test/fixtures/cluster_dichotomious.dump index e6ff12d6d..615b14bf5 100644 Binary files a/test/fixtures/cluster_dichotomious.dump and b/test/fixtures/cluster_dichotomious.dump differ diff --git a/test/fixtures/cluster_one_phase.dump b/test/fixtures/cluster_one_phase.dump index 8ae44cc64..74662c23c 100644 Binary files a/test/fixtures/cluster_one_phase.dump and b/test/fixtures/cluster_one_phase.dump differ diff --git a/test/fixtures/cluster_two_phases.dump b/test/fixtures/cluster_two_phases.dump index 131feefb9..a12d87127 100644 Binary files a/test/fixtures/cluster_two_phases.dump and b/test/fixtures/cluster_two_phases.dump differ diff --git a/test/fixtures/dichotomious_approach.dump b/test/fixtures/dichotomious_approach.dump index 5435d7ba5..e5368b0a0 100644 Binary files a/test/fixtures/dichotomious_approach.dump and b/test/fixtures/dichotomious_approach.dump differ diff --git a/test/fixtures/dichotomious_check_number_of_services.dump b/test/fixtures/dichotomious_check_number_of_services.dump index 2670f9d75..6aab1e416 100644 Binary files a/test/fixtures/dichotomious_check_number_of_services.dump and b/test/fixtures/dichotomious_check_number_of_services.dump differ diff --git a/test/fixtures/instance_andalucia1_two_vehicles.dump b/test/fixtures/instance_andalucia1_two_vehicles.dump index 583174b9b..1548da9cf 100644 Binary files a/test/fixtures/instance_andalucia1_two_vehicles.dump and b/test/fixtures/instance_andalucia1_two_vehicles.dump differ diff --git a/test/fixtures/instance_andalucia2.dump b/test/fixtures/instance_andalucia2.dump index 4190e9e22..0cfbf84c2 100644 Binary files a/test/fixtures/instance_andalucia2.dump and b/test/fixtures/instance_andalucia2.dump differ diff --git a/test/fixtures/instance_baleares2.dump b/test/fixtures/instance_baleares2.dump index 8c0721d7d..9867d9b56 100644 Binary files a/test/fixtures/instance_baleares2.dump and b/test/fixtures/instance_baleares2.dump differ diff --git a/test/fixtures/instance_baleares2_with_priority.dump b/test/fixtures/instance_baleares2_with_priority.dump index b5d7211cf..8ee3a23b4 100644 Binary files a/test/fixtures/instance_baleares2_with_priority.dump and b/test/fixtures/instance_baleares2_with_priority.dump differ diff --git a/test/fixtures/instance_clustered.dump b/test/fixtures/instance_clustered.dump index 71710acad..820140a4c 100644 Binary files a/test/fixtures/instance_clustered.dump and b/test/fixtures/instance_clustered.dump differ diff --git a/test/fixtures/instance_order.dump b/test/fixtures/instance_order.dump index 5c47cad41..1bbfccb2e 100644 Binary files a/test/fixtures/instance_order.dump and b/test/fixtures/instance_order.dump differ diff --git a/test/fixtures/instance_same_point_day.dump b/test/fixtures/instance_same_point_day.dump index 6716598ca..b8d25cb87 100644 Binary files a/test/fixtures/instance_same_point_day.dump and b/test/fixtures/instance_same_point_day.dump differ diff --git a/test/fixtures/length_centroid.dump b/test/fixtures/length_centroid.dump index 0139412f4..19d31ef6e 100644 Binary files a/test/fixtures/length_centroid.dump and b/test/fixtures/length_centroid.dump differ diff --git a/test/fixtures/max_split_functionality.dump b/test/fixtures/max_split_functionality.dump index c164fc220..6e8f8c138 100644 Binary files a/test/fixtures/max_split_functionality.dump and b/test/fixtures/max_split_functionality.dump differ diff --git a/test/fixtures/minimum_duration_lapse_shipments.dump b/test/fixtures/minimum_duration_lapse_shipments.dump index 73c60617d..ce7d3d4e9 100644 Binary files a/test/fixtures/minimum_duration_lapse_shipments.dump and b/test/fixtures/minimum_duration_lapse_shipments.dump differ diff --git a/test/fixtures/no_doubles_3000.dump b/test/fixtures/no_doubles_3000.dump index 1b89481b1..072273c42 100644 Binary files a/test/fixtures/no_doubles_3000.dump and b/test/fixtures/no_doubles_3000.dump differ diff --git a/test/fixtures/ortools_global_six_routes_without_rest.dump b/test/fixtures/ortools_global_six_routes_without_rest.dump index 07160e306..485570661 100644 Binary files a/test/fixtures/ortools_global_six_routes_without_rest.dump and b/test/fixtures/ortools_global_six_routes_without_rest.dump differ diff --git a/test/fixtures/ortools_global_ten_routes_without_rest.dump b/test/fixtures/ortools_global_ten_routes_without_rest.dump index 83f5da7a6..60ca93ba5 100644 Binary files a/test/fixtures/ortools_global_ten_routes_without_rest.dump and b/test/fixtures/ortools_global_ten_routes_without_rest.dump differ diff --git a/test/fixtures/ortools_global_with_identical_route_duration_and_vehicle_window.dump b/test/fixtures/ortools_global_with_identical_route_duration_and_vehicle_window.dump index 783214961..7e5aa2cd0 100644 Binary files a/test/fixtures/ortools_global_with_identical_route_duration_and_vehicle_window.dump and b/test/fixtures/ortools_global_with_identical_route_duration_and_vehicle_window.dump differ diff --git a/test/fixtures/ortools_global_with_identical_route_duration_and_vehicle_window.json b/test/fixtures/ortools_global_with_identical_route_duration_and_vehicle_window.json index 8bdc50232..569a70559 100644 --- a/test/fixtures/ortools_global_with_identical_route_duration_and_vehicle_window.json +++ b/test/fixtures/ortools_global_with_identical_route_duration_and_vehicle_window.json @@ -1 +1 @@ -{"vrp":{"units":[{"id":"unit1"},{"id":"unit2"}],"configuration":{"resolution":{"duration":6000,"iterations_without_improvment":100},"restitution":{"intermediate_solutions":false}},"points":[{"id":"rdv1","location":{"lat":47.5289,"lon":-0.610066}},{"id":"rdv2","location":{"lat":47.4557,"lon":-0.272599}},{"id":"rdv3","location":{"lat":47.4463,"lon":-0.455594}},{"id":"rdv4","location":{"lat":47.4784,"lon":-0.563166}},{"id":"rdv5","location":{"lat":47.471,"lon":-0.553897}},{"id":"rdv6","location":{"lat":47.453,"lon":-0.544951}},{"id":"rdv7","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv8","location":{"lat":47.4195,"lon":-0.435102}},{"id":"rdv9","location":{"lat":47.5221,"lon":-0.884321}},{"id":"rdv10","location":{"lat":47.4601,"lon":-0.533809}},{"id":"rdv11","location":{"lat":47.4463,"lon":-0.455594}},{"id":"rdv12","location":{"lat":47.4463,"lon":-0.455594}},{"id":"rdv13","location":{"lat":47.525,"lon":-0.525667}},{"id":"rdv14","location":{"lat":47.4662,"lon":-0.552585}},{"id":"rdv15","location":{"lat":47.4603,"lon":-0.616861}},{"id":"rdv16","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv17","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv18","location":{"lat":47.4873,"lon":-0.574497}},{"id":"rdv19","location":{"lat":47.465,"lon":-0.562032}},{"id":"rdv20","location":{"lat":47.4919,"lon":-0.547877}},{"id":"rdv21","location":{"lat":47.4752,"lon":-0.539809}},{"id":"rdv22","location":{"lat":47.4721,"lon":-0.552937}},{"id":"rdv23","location":{"lat":47.475,"lon":-0.569292}},{"id":"rdv24","location":{"lat":47.4762,"lon":-0.551561}},{"id":"rdv25","location":{"lat":47.4707,"lon":-0.55342}},{"id":"rdv26","location":{"lat":47.4734,"lon":-0.553227}},{"id":"rdv27","location":{"lat":47.4772,"lon":-0.560892}},{"id":"rdv28","location":{"lat":47.4731,"lon":-0.549123}},{"id":"rdv29","location":{"lat":47.4444,"lon":-0.540579}},{"id":"rdv30","location":{"lat":47.4487,"lon":-0.551382}},{"id":"rdv31","location":{"lat":47.4733,"lon":-0.546593}},{"id":"rdv32","location":{"lat":47.477,"lon":-0.532281}},{"id":"rdv33","location":{"lat":47.4693,"lon":-0.561345}},{"id":"rdv34","location":{"lat":47.4647,"lon":-0.556389}},{"id":"rdv35","location":{"lat":48.8693,"lon":2.3502}},{"id":"rdv36","location":{"lat":47.541,"lon":-0.101231}},{"id":"rdv37","location":{"lat":47.4402,"lon":-0.195214}},{"id":"rdv38","location":{"lat":47.4402,"lon":-0.195214}},{"id":"rdv39","location":{"lat":47.4402,"lon":-0.195214}},{"id":"rdv40","location":{"lat":47.4784,"lon":-0.630341}},{"id":"rdv41","location":{"lat":47.3827,"lon":-0.109054}},{"id":"rdv42","location":{"lat":47.4742,"lon":-0.635502}},{"id":"rdv43","location":{"lat":47.4691,"lon":-0.616239}},{"id":"rdv44","location":{"lat":47.3786,"lon":-0.110535}},{"id":"rdv45","location":{"lat":47.4846,"lon":-0.627114}},{"id":"rdv46","location":{"lat":47.4333,"lon":-0.529787}},{"id":"rdv47","location":{"lat":47.4484,"lon":-0.507974}},{"id":"rdv48","location":{"lat":47.5202,"lon":-0.581762}},{"id":"rdv49","location":{"lat":47.4929,"lon":-0.223567}},{"id":"rdv50","location":{"lat":47.4784,"lon":-0.563166}},{"id":"rdv51","location":{"lat":47.4601,"lon":-0.533809}},{"id":"rdv52","location":{"lat":47.4601,"lon":-0.533809}},{"id":"rdv53","location":{"lat":47.4734,"lon":-0.546325}},{"id":"rdv54","location":{"lat":47.452,"lon":-0.545653}},{"id":"rdv55","location":{"lat":47.4712,"lon":-0.550689}},{"id":"rdv56","location":{"lat":47.4687,"lon":-0.549608}},{"id":"rdv57","location":{"lat":47.4736,"lon":-0.542109}},{"id":"rdv58","location":{"lat":47.4642,"lon":-0.522229}},{"id":"rdv59","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv60","location":{"lat":47.4779,"lon":-0.560474}},{"id":"rdv61","location":{"lat":47.4657,"lon":-0.553693}},{"id":"rdv62","location":{"lat":47.4712,"lon":-0.553952}},{"id":"rdv63","location":{"lat":47.4652,"lon":-0.545167}},{"id":"rdv64","location":{"lat":47.4652,"lon":-0.545167}},{"id":"rdv65","location":{"lat":47.4712,"lon":-0.554067}},{"id":"rdv66","location":{"lat":47.4698,"lon":-0.555258}},{"id":"rdv67","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv68","location":{"lat":47.4651,"lon":-0.558679}},{"id":"rdv69","location":{"lat":47.47,"lon":-0.548683}},{"id":"rdv70","location":{"lat":47.47,"lon":-0.548683}},{"id":"rdv71","location":{"lat":47.4531,"lon":-0.535406}},{"id":"rdv72","location":{"lat":47.4588,"lon":-0.559277}},{"id":"rdv73","location":{"lat":47.4737,"lon":-0.553051}},{"id":"rdv74","location":{"lat":47.4537,"lon":-0.526583}},{"id":"rdv75","location":{"lat":47.4725,"lon":-0.560698}},{"id":"rdv76","location":{"lat":47.4721,"lon":-0.590716}},{"id":"rdv77","location":{"lat":47.467,"lon":-0.558908}},{"id":"rdv78","location":{"lat":47.4724,"lon":-0.554352}},{"id":"rdv79","location":{"lat":47.471,"lon":-0.566757}},{"id":"rdv80","location":{"lat":47.4592,"lon":-0.604392}},{"id":"rdv81","location":{"lat":47.4583,"lon":-0.530444}},{"id":"rdv82","location":{"lat":47.4653,"lon":-0.545309}},{"id":"rdv83","location":{"lat":48.8693,"lon":2.3502}},{"id":"rdv84","location":{"lat":48.8693,"lon":2.3502}},{"id":"rdv85","location":{"lat":47.5014,"lon":-0.599646}},{"id":"rdv86","location":{"lat":47.5014,"lon":-0.599646}},{"id":"rdv87","location":{"lat":47.4407,"lon":-0.222658}},{"id":"rdv88","location":{"lat":47.4846,"lon":-0.627114}},{"id":"rdv89","location":{"lat":47.3786,"lon":-0.110535}},{"id":"rdv90","location":{"lat":47.4846,"lon":-0.627114}},{"id":"rdv91","location":{"lat":47.3827,"lon":-0.109054}},{"id":"rdv92","location":{"lat":47.4784,"lon":-0.630341}},{"id":"rdv93","location":{"lat":47.4784,"lon":-0.630341}},{"id":"rdv94","location":{"lat":47.3827,"lon":-0.109054}},{"id":"rdv95","location":{"lat":47.4784,"lon":-0.630341}},{"id":"rdv96","location":{"lat":47.3827,"lon":-0.109054}},{"id":"rdv97","location":{"lat":47.5978,"lon":-0.700641}},{"id":"rdv98","location":{"lat":47.3332,"lon":-0.436299}},{"id":"rdv99","location":{"lat":47.288,"lon":-0.43298}},{"id":"rdv100","location":{"lat":47.3795,"lon":-0.643668}},{"id":"rdv101","location":{"lat":47.4601,"lon":-0.533809}},{"id":"rdv102","location":{"lat":47.4722,"lon":-0.551967}},{"id":"rdv103","location":{"lat":47.4706,"lon":-0.552721}},{"id":"rdv104","location":{"lat":47.485,"lon":-0.526242}},{"id":"rdv105","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv106","location":{"lat":47.4514,"lon":-0.54895}},{"id":"rdv107","location":{"lat":47.4919,"lon":-0.547877}},{"id":"rdv108","location":{"lat":47.4776,"lon":-0.544867}},{"id":"rdv109","location":{"lat":47.4458,"lon":-0.560046}},{"id":"rdv110","location":{"lat":47.4764,"lon":-0.542889}},{"id":"rdv111","location":{"lat":47.4628,"lon":-0.536248}},{"id":"rdv112","location":{"lat":47.4704,"lon":-0.552052}},{"id":"rdv113","location":{"lat":47.4664,"lon":-0.549984}},{"id":"rdv114","location":{"lat":47.4603,"lon":-0.616861}},{"id":"rdv115","location":{"lat":47.4919,"lon":-0.547877}},{"id":"rdv116","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv117","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv118","location":{"lat":47.4797,"lon":-0.527312}},{"id":"rdv119","location":{"lat":47.4736,"lon":-0.559217}},{"id":"rdv120","location":{"lat":47.4733,"lon":-0.546593}},{"id":"rdv121","location":{"lat":47.4487,"lon":-0.56085}},{"id":"rdv122","location":{"lat":47.4506,"lon":-0.54634}},{"id":"rdv123","location":{"lat":47.4884,"lon":-0.56086}},{"id":"rdv124","location":{"lat":47.471,"lon":-0.553518}},{"id":"rdv125","location":{"lat":47.4729,"lon":-0.561497}},{"id":"rdv126","location":{"lat":47.4897,"lon":-0.507567}},{"id":"rdv127","location":{"lat":47.4549,"lon":-0.560897}},{"id":"p00001198","location":{"lat":47.4968,"lon":-0.619151}},{"id":"p00000294_2","location":{"lat":47.4407,"lon":-0.222658}},{"id":"p00000731_1","location":{"lat":47.4338,"lon":-0.223433}},{"id":"p00001113","location":{"lat":47.5039,"lon":-0.791659}},{"id":"p00010612","location":{"lat":47.5019,"lon":-0.422171}},{"id":"p00000111","location":{"lat":47.6629,"lon":-0.244618}},{"id":"p00000489","location":{"lat":47.3827,"lon":-0.109054}},{"id":"p00005445_1","location":{"lat":47.5289,"lon":-0.610066}},{"id":"p00014175_1","location":{"lat":47.3573,"lon":-0.553444}},{"id":"p00000511_1","location":{"lat":47.3574,"lon":-0.551212}},{"id":"p00000511_1","location":{"lat":47.3574,"lon":-0.551212}},{"id":"p00000511_2","location":{"lat":47.3586,"lon":-0.551899}},{"id":"p00013519_1","location":{"lat":47.3993,"lon":-0.527441}},{"id":"p00000257_1","location":{"lat":47.3996,"lon":-0.539386}},{"id":"p00000257_1","location":{"lat":47.3996,"lon":-0.539386}},{"id":"p00016999","location":{"lat":47.4006,"lon":-0.535082}},{"id":"p00012043","location":{"lat":47.3984,"lon":-0.544026}},{"id":"p00012956","location":{"lat":47.3988,"lon":-0.529466}},{"id":"p00012955","location":{"lat":47.3989,"lon":-0.528207}},{"id":"p00005447","location":{"lat":47.4091,"lon":-0.32026}},{"id":"p00016677","location":{"lat":47.2305,"lon":-0.071593}},{"id":"p00001507_1","location":{"lat":47.5901,"lon":-0.359223}},{"id":"p00014285","location":{"lat":47.478,"lon":-0.497588}},{"id":"p00014285","location":{"lat":47.478,"lon":-0.497588}},{"id":"p00001830_1","location":{"lat":47.4654,"lon":-0.499294}},{"id":"p00002094","location":{"lat":47.4269,"lon":-0.551697}},{"id":"p00015580","location":{"lat":47.4088,"lon":-0.760619}},{"id":"p00016073","location":{"lat":47.4088,"lon":-0.760619}},{"id":"p00000706","location":{"lat":47.4568,"lon":-0.661627}},{"id":"p00000053_1","location":{"lat":47.3707,"lon":-0.496747}},{"id":"p00000301","location":{"lat":47.3991,"lon":-0.513324}},{"id":"p00015699_1","location":{"lat":47.5003,"lon":-0.489976}},{"id":"p00015699_1","location":{"lat":47.5003,"lon":-0.489976}},{"id":"p00004444_1","location":{"lat":47.5128,"lon":-0.471117}},{"id":"p00000259_1","location":{"lat":47.4274,"lon":-0.547}},{"id":"p00000259_1","location":{"lat":47.4274,"lon":-0.547}},{"id":"p00000259_1","location":{"lat":47.4274,"lon":-0.547}},{"id":"p00000259_2","location":{"lat":47.4252,"lon":-0.561946}},{"id":"p00012057_1","location":{"lat":47.4251,"lon":-0.56448}},{"id":"p00000809","location":{"lat":47.267,"lon":-0.50325}},{"id":"p00001821_1","location":{"lat":47.6116,"lon":-0.471595}},{"id":"p00013867","location":{"lat":47.4529,"lon":-0.468028}},{"id":"p00000849","location":{"lat":47.4489,"lon":-0.474029}},{"id":"p00015255","location":{"lat":47.4478,"lon":-0.465395}},{"id":"p00000335","location":{"lat":47.4466,"lon":-0.495939}},{"id":"p00015378","location":{"lat":47.4424,"lon":-0.48255}},{"id":"p00015301","location":{"lat":47.4527,"lon":-0.467693}},{"id":"pSociete","location":{"lat":47.4823,"lon":-0.503304}}],"vehicles":[{"id":"201707079","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":407200,"end":436000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017070729","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":407200,"end":436000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017070730","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":407200,"end":436000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017070731","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":407200,"end":436000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"201707109","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":666400,"end":695200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071029","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":666400,"end":695200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071030","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":666400,"end":695200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071031","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":666400,"end":695200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"201707119","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":752800,"end":781600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071129","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":752800,"end":781600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071130","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":752800,"end":781600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071131","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":752800,"end":781600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"201707129","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":839200,"end":868000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071229","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":839200,"end":868000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071230","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":839200,"end":868000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071231","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":839200,"end":868000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"201707139","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":925600,"end":954400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071329","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":925600,"end":954400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071330","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":925600,"end":954400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071331","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":925600,"end":954400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071729","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1271200,"end":1300000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071730","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1271200,"end":1300000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071731","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1271200,"end":1300000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071829","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1357600,"end":1386400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071830","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1357600,"end":1386400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071831","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1357600,"end":1386400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071930","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1444000,"end":1472800},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071931","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1444000,"end":1472800},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072030","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1530400,"end":1559200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017072131","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1616800,"end":1645600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072430","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1876000,"end":1904800},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017072431","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1876000,"end":1904800},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072529","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1962400,"end":1991200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072530","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1962400,"end":1991200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017072531","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1962400,"end":1991200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072630","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2048800,"end":2077600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017072729","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2135200,"end":2164000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072730","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2135200,"end":2164000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017073129","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2480800,"end":2509600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017073130","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2480800,"end":2509600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]}],"services":[{"id":"service1","type":"service","priority":0,"sticky_vehicle_ids":["201707079"],"activity":{"point_id":"rdv1","timewindows":[{"start":407200,"end":410800}]}},{"id":"service2","type":"service","priority":0,"sticky_vehicle_ids":["201707079"],"activity":{"point_id":"rdv2","timewindows":[{"start":410800,"end":414400}]}},{"id":"service3","type":"service","priority":0,"sticky_vehicle_ids":["201707119"],"activity":{"point_id":"rdv3","timewindows":[{"start":763600,"end":767200}]}},{"id":"service4","type":"service","priority":0,"sticky_vehicle_ids":["201707119"],"activity":{"point_id":"rdv4","timewindows":[{"start":770800,"end":774400}]}},{"id":"service5","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv5","timewindows":[{"start":839200,"end":842800}]}},{"id":"service6","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv6","timewindows":[{"start":842800,"end":850000}]}},{"id":"service7","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv7","timewindows":[{"start":850000,"end":853600}]}},{"id":"service8","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv8","timewindows":[{"start":853600,"end":857200}]}},{"id":"service9","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv9","timewindows":[{"start":857200,"end":858100}]}},{"id":"service10","type":"service","priority":0,"sticky_vehicle_ids":["201707139"],"activity":{"point_id":"rdv10","timewindows":[{"start":925600,"end":947200}]}},{"id":"service11","type":"service","priority":0,"sticky_vehicle_ids":["2017071129"],"activity":{"point_id":"rdv11","timewindows":[{"start":752800,"end":756400}]}},{"id":"service12","type":"service","priority":0,"sticky_vehicle_ids":["2017071129"],"activity":{"point_id":"rdv12","timewindows":[{"start":756400,"end":770800}]}},{"id":"service13","type":"service","priority":0,"sticky_vehicle_ids":["2017071229"],"activity":{"point_id":"rdv13","timewindows":[{"start":839200,"end":842800}]}},{"id":"service14","type":"service","priority":0,"sticky_vehicle_ids":["2017071229"],"activity":{"point_id":"rdv14","timewindows":[{"start":842800,"end":846400}]}},{"id":"service15","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv15","timewindows":[{"start":1271200,"end":1274800}]}},{"id":"service16","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv16","timewindows":[{"start":1274800,"end":1280200}]}},{"id":"service17","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv17","timewindows":[{"start":1280200,"end":1283800}]}},{"id":"service18","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv18","timewindows":[{"start":1283800,"end":1287400}]}},{"id":"service19","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv19","timewindows":[{"start":1287400,"end":1294600}]}},{"id":"service20","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv20","timewindows":[{"start":1357600,"end":1361200}]}},{"id":"service21","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv21","timewindows":[{"start":1361200,"end":1364800}]}},{"id":"service22","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv22","timewindows":[{"start":1364800,"end":1366600}]}},{"id":"service23","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv23","timewindows":[{"start":1366600,"end":1370200}]}},{"id":"service24","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv24","timewindows":[{"start":1370200,"end":1372000}]}},{"id":"service25","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv25","timewindows":[{"start":1372000,"end":1375600}]}},{"id":"service26","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv26","timewindows":[{"start":1375600,"end":1377400}]}},{"id":"service27","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv27","timewindows":[{"start":1377400,"end":1379200}]}},{"id":"service28","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv28","timewindows":[{"start":1379200,"end":1381000}]}},{"id":"service29","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv29","timewindows":[{"start":1962400,"end":1966000}]}},{"id":"service30","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv30","timewindows":[{"start":1966000,"end":1971400}]}},{"id":"service31","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv31","timewindows":[{"start":1971400,"end":1975000}]}},{"id":"service32","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv32","timewindows":[{"start":1975000,"end":1978600}]}},{"id":"service33","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv33","timewindows":[{"start":1978600,"end":1982200}]}},{"id":"service34","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv34","timewindows":[{"start":1982200,"end":1985800}]}},{"id":"service35","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv35","timewindows":[{"start":2135200,"end":2139700}]}},{"id":"service36","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv36","timewindows":[{"start":2140600,"end":2158600}]}},{"id":"service37","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv37","timewindows":[{"start":2140600,"end":2144200}]}},{"id":"service38","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv38","timewindows":[{"start":2144200,"end":2151400}]}},{"id":"service39","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv39","timewindows":[{"start":2151400,"end":2158600}]}},{"id":"service40","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv40","timewindows":[{"start":2480800,"end":2488000}]}},{"id":"service41","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv41","timewindows":[{"start":2480800,"end":2495200}]}},{"id":"service42","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv42","timewindows":[{"start":2488000,"end":2493400}]}},{"id":"service43","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv43","timewindows":[{"start":2493400,"end":2497000}]}},{"id":"service44","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv44","timewindows":[{"start":2495200,"end":2500600}]}},{"id":"service45","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv45","timewindows":[{"start":2497000,"end":2502400}]}},{"id":"service46","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv46","timewindows":[{"start":2500600,"end":2504200}]}},{"id":"service47","type":"service","priority":0,"sticky_vehicle_ids":["2017071130"],"activity":{"point_id":"rdv47","timewindows":[{"start":752800,"end":763600}]}},{"id":"service48","type":"service","priority":0,"sticky_vehicle_ids":["2017071130"],"activity":{"point_id":"rdv48","timewindows":[{"start":763600,"end":767200}]}},{"id":"service49","type":"service","priority":0,"sticky_vehicle_ids":["2017071130"],"activity":{"point_id":"rdv49","timewindows":[{"start":767200,"end":770800}]}},{"id":"service50","type":"service","priority":0,"sticky_vehicle_ids":["2017071130"],"activity":{"point_id":"rdv50","timewindows":[{"start":770800,"end":774400}]}},{"id":"service51","type":"service","priority":0,"sticky_vehicle_ids":["2017071230"],"activity":{"point_id":"rdv51","timewindows":[{"start":839200,"end":846400}]}},{"id":"service52","type":"service","priority":0,"sticky_vehicle_ids":["2017071330"],"activity":{"point_id":"rdv52","timewindows":[{"start":925600,"end":932800}]}},{"id":"service53","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv53","timewindows":[{"start":1271200,"end":1278400}]}},{"id":"service54","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv54","timewindows":[{"start":1278400,"end":1282000}]}},{"id":"service55","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv55","timewindows":[{"start":1282000,"end":1287400}]}},{"id":"service56","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv56","timewindows":[{"start":1287400,"end":1291000}]}},{"id":"service57","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv57","timewindows":[{"start":1291000,"end":1294600}]}},{"id":"service58","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv58","timewindows":[{"start":1357600,"end":1361200}]}},{"id":"service59","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv59","timewindows":[{"start":1361200,"end":1364800}]}},{"id":"service60","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv60","timewindows":[{"start":1364800,"end":1368400}]}},{"id":"service61","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv61","timewindows":[{"start":1368400,"end":1372000}]}},{"id":"service62","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv62","timewindows":[{"start":1372000,"end":1373800}]}},{"id":"service63","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv63","timewindows":[{"start":1373800,"end":1377400}]}},{"id":"service64","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv64","timewindows":[{"start":1377400,"end":1379200}]}},{"id":"service65","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv65","timewindows":[{"start":1379200,"end":1381000}]}},{"id":"service66","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv66","timewindows":[{"start":1444000,"end":1447600}]}},{"id":"service67","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv67","timewindows":[{"start":1447600,"end":1451200}]}},{"id":"service68","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv68","timewindows":[{"start":1451200,"end":1454800}]}},{"id":"service69","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv69","timewindows":[{"start":1454800,"end":1462000}]}},{"id":"service70","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv70","timewindows":[{"start":1462000,"end":1465600}]}},{"id":"service71","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv71","timewindows":[{"start":1530400,"end":1535800}]}},{"id":"service72","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv72","timewindows":[{"start":1535800,"end":1539400}]}},{"id":"service73","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv73","timewindows":[{"start":1539400,"end":1543000}]}},{"id":"service74","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv74","timewindows":[{"start":1543000,"end":1546600}]}},{"id":"service75","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv75","timewindows":[{"start":1546600,"end":1550200}]}},{"id":"service76","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv76","timewindows":[{"start":1550200,"end":1553800}]}},{"id":"service77","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv77","timewindows":[{"start":1876000,"end":1879600}]}},{"id":"service78","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv78","timewindows":[{"start":1879600,"end":1883200}]}},{"id":"service79","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv79","timewindows":[{"start":1883200,"end":1886800}]}},{"id":"service80","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv80","timewindows":[{"start":1886800,"end":1890400}]}},{"id":"service81","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv81","timewindows":[{"start":1890400,"end":1894000}]}},{"id":"service82","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv82","timewindows":[{"start":1894000,"end":1897600}]}},{"id":"service83","type":"service","priority":0,"sticky_vehicle_ids":["2017072530"],"activity":{"point_id":"rdv83","timewindows":[{"start":1962400,"end":1966900}]}},{"id":"service84","type":"service","priority":0,"sticky_vehicle_ids":["2017072630"],"activity":{"point_id":"rdv84","timewindows":[{"start":2048800,"end":2052400}]}},{"id":"service85","type":"service","priority":0,"sticky_vehicle_ids":["2017072730"],"activity":{"point_id":"rdv85","timewindows":[{"start":2135200,"end":2146000}]}},{"id":"service86","type":"service","priority":0,"sticky_vehicle_ids":["2017072730"],"activity":{"point_id":"rdv86","timewindows":[{"start":2146000,"end":2149600}]}},{"id":"service87","type":"service","priority":0,"sticky_vehicle_ids":["2017072730"],"activity":{"point_id":"rdv87","timewindows":[{"start":2149600,"end":2156800}]}},{"id":"service88","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv88","timewindows":[{"start":2480800,"end":2484400}]}},{"id":"service89","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv89","timewindows":[{"start":2480800,"end":2484400}]}},{"id":"service90","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv90","timewindows":[{"start":2484400,"end":2488000}]}},{"id":"service91","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv91","timewindows":[{"start":2484400,"end":2491600}]}},{"id":"service92","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv92","timewindows":[{"start":2488000,"end":2489800}]}},{"id":"service93","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv93","timewindows":[{"start":2489800,"end":2493400}]}},{"id":"service94","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv94","timewindows":[{"start":2491600,"end":2497000}]}},{"id":"service95","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv95","timewindows":[{"start":2493400,"end":2498800}]}},{"id":"service96","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv96","timewindows":[{"start":2497000,"end":2504200}]}},{"id":"service97","type":"service","priority":0,"sticky_vehicle_ids":["2017071131"],"activity":{"point_id":"rdv97","timewindows":[{"start":752800,"end":756400}]}},{"id":"service98","type":"service","priority":0,"sticky_vehicle_ids":["2017071131"],"activity":{"point_id":"rdv98","timewindows":[{"start":756400,"end":760000}]}},{"id":"service99","type":"service","priority":0,"sticky_vehicle_ids":["2017071131"],"activity":{"point_id":"rdv99","timewindows":[{"start":760000,"end":763600}]}},{"id":"service100","type":"service","priority":0,"sticky_vehicle_ids":["2017071131"],"activity":{"point_id":"rdv100","timewindows":[{"start":763600,"end":767200}]}},{"id":"service101","type":"service","priority":0,"sticky_vehicle_ids":["2017071331"],"activity":{"point_id":"rdv101","timewindows":[{"start":925600,"end":947200}]}},{"id":"service102","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv102","timewindows":[{"start":1271200,"end":1274800}]}},{"id":"service103","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv103","timewindows":[{"start":1274800,"end":1278400}]}},{"id":"service104","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv104","timewindows":[{"start":1278400,"end":1282000}]}},{"id":"service105","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv105","timewindows":[{"start":1282000,"end":1291000}]}},{"id":"service106","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv106","timewindows":[{"start":1291000,"end":1294600}]}},{"id":"service107","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv107","timewindows":[{"start":1357600,"end":1361200}]}},{"id":"service108","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv108","timewindows":[{"start":1361200,"end":1368400}]}},{"id":"service109","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv109","timewindows":[{"start":1368400,"end":1373800}]}},{"id":"service110","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv110","timewindows":[{"start":1373800,"end":1377400}]}},{"id":"service111","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv111","timewindows":[{"start":1377400,"end":1381000}]}},{"id":"service112","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv112","timewindows":[{"start":1444000,"end":1447600}]}},{"id":"service113","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv113","timewindows":[{"start":1447600,"end":1451200}]}},{"id":"service114","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv114","timewindows":[{"start":1451200,"end":1454800}]}},{"id":"service115","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv115","timewindows":[{"start":1454800,"end":1458400}]}},{"id":"service116","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv116","timewindows":[{"start":1458400,"end":1467400}]}},{"id":"service117","type":"service","priority":0,"sticky_vehicle_ids":["2017072131"],"activity":{"point_id":"rdv117","timewindows":[{"start":1616800,"end":1629400}]}},{"id":"service118","type":"service","priority":0,"sticky_vehicle_ids":["2017072131"],"activity":{"point_id":"rdv118","timewindows":[{"start":1629400,"end":1633000}]}},{"id":"service119","type":"service","priority":0,"sticky_vehicle_ids":["2017072131"],"activity":{"point_id":"rdv119","timewindows":[{"start":1633000,"end":1636600}]}},{"id":"service120","type":"service","priority":0,"sticky_vehicle_ids":["2017072131"],"activity":{"point_id":"rdv120","timewindows":[{"start":1636600,"end":1640200}]}},{"id":"service121","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv121","timewindows":[{"start":1876000,"end":1881400}]}},{"id":"service122","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv122","timewindows":[{"start":1881400,"end":1886800}]}},{"id":"service123","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv123","timewindows":[{"start":1886800,"end":1890400}]}},{"id":"service124","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv124","timewindows":[{"start":1890400,"end":1894000}]}},{"id":"service125","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv125","timewindows":[{"start":1894000,"end":1897600}]}},{"id":"service126","type":"service","priority":0,"sticky_vehicle_ids":["2017072531"],"activity":{"point_id":"rdv126","timewindows":[{"start":1962400,"end":1973200}]}},{"id":"service127","type":"service","priority":0,"sticky_vehicle_ids":["2017072531"],"activity":{"point_id":"rdv127","timewindows":[{"start":1973200,"end":1977700}]}},{"id":"R1169","type":"service","activity":{"point_id":"p00001198","duration":28800,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1079","type":"service","activity":{"point_id":"p00000294_2","duration":18000,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R579","type":"service","activity":{"point_id":"p00000731_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R284","type":"service","activity":{"point_id":"p00001113","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R953","type":"service","activity":{"point_id":"p00010612","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1187","type":"service","activity":{"point_id":"p00000111","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1183","type":"service","activity":{"point_id":"p00000489","duration":28800,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R437","type":"service","activity":{"point_id":"p00005445_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R833","type":"service","activity":{"point_id":"p00014175_1","duration":1800,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1168","type":"service","activity":{"point_id":"p00000511_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1167","type":"service","activity":{"point_id":"p00000511_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R858","type":"service","activity":{"point_id":"p00000511_2","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R802","type":"service","activity":{"point_id":"p00013519_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1268","type":"service","activity":{"point_id":"p00000257_1","duration":1800,"timewindows":[{"start":378400,"end":2538340}]},"skills":["1"]},{"id":"R1269","type":"service","activity":{"point_id":"p00000257_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]},"skills":["1"]},{"id":"R1290","type":"service","activity":{"point_id":"p00016999","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R693","type":"service","activity":{"point_id":"p00012043","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1227","type":"service","activity":{"point_id":"p00012956","duration":18000,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R767","type":"service","activity":{"point_id":"p00012955","duration":1800,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R642","type":"service","activity":{"point_id":"p00005447","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1086","type":"service","activity":{"point_id":"p00016677","duration":7200,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R820","type":"service","activity":{"point_id":"p00001507_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R850","type":"service","activity":{"point_id":"p00014285","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R851","type":"service","activity":{"point_id":"p00014285","duration":9000,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R220","type":"service","activity":{"point_id":"p00001830_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R52","type":"service","activity":{"point_id":"p00002094","duration":9900,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1154","type":"service","activity":{"point_id":"p00015580","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1131","type":"service","activity":{"point_id":"p00016073","duration":7200,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R559","type":"service","activity":{"point_id":"p00000706","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R461","type":"service","activity":{"point_id":"p00000053_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R356","type":"service","activity":{"point_id":"p00000301","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R962","type":"service","activity":{"point_id":"p00015699_1","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1093","type":"service","activity":{"point_id":"p00015699_1","duration":5112,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R825","type":"service","activity":{"point_id":"p00004444_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1035","type":"service","activity":{"point_id":"p00000259_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R481","type":"service","activity":{"point_id":"p00000259_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R482","type":"service","activity":{"point_id":"p00000259_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R652","type":"service","activity":{"point_id":"p00000259_2","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R867","type":"service","activity":{"point_id":"p00012057_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R744","type":"service","activity":{"point_id":"p00000809","duration":14400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R115","type":"service","activity":{"point_id":"p00001821_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R943","type":"service","activity":{"point_id":"p00013867","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R809","type":"service","activity":{"point_id":"p00000849","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R928","type":"service","activity":{"point_id":"p00015255","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R577","type":"service","activity":{"point_id":"p00000335","duration":7200,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R952","type":"service","activity":{"point_id":"p00015378","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R950","type":"service","activity":{"point_id":"p00015301","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}}]}} \ No newline at end of file +{"vrp":{"units":[{"id":"unit1"},{"id":"unit2"}],"configuration":{"resolution":{"duration":6000,"iterations_without_improvment":100},"restitution":{"intermediate_solutions":false}},"points":[{"id":"rdv1","location":{"lat":47.5289,"lon":-0.610066}},{"id":"rdv2","location":{"lat":47.4557,"lon":-0.272599}},{"id":"rdv3","location":{"lat":47.4463,"lon":-0.455594}},{"id":"rdv4","location":{"lat":47.4784,"lon":-0.563166}},{"id":"rdv5","location":{"lat":47.471,"lon":-0.553897}},{"id":"rdv6","location":{"lat":47.453,"lon":-0.544951}},{"id":"rdv7","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv8","location":{"lat":47.4195,"lon":-0.435102}},{"id":"rdv9","location":{"lat":47.5221,"lon":-0.884321}},{"id":"rdv10","location":{"lat":47.4601,"lon":-0.533809}},{"id":"rdv11","location":{"lat":47.4463,"lon":-0.455594}},{"id":"rdv12","location":{"lat":47.4463,"lon":-0.455594}},{"id":"rdv13","location":{"lat":47.525,"lon":-0.525667}},{"id":"rdv14","location":{"lat":47.4662,"lon":-0.552585}},{"id":"rdv15","location":{"lat":47.4603,"lon":-0.616861}},{"id":"rdv16","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv17","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv18","location":{"lat":47.4873,"lon":-0.574497}},{"id":"rdv19","location":{"lat":47.465,"lon":-0.562032}},{"id":"rdv20","location":{"lat":47.4919,"lon":-0.547877}},{"id":"rdv21","location":{"lat":47.4752,"lon":-0.539809}},{"id":"rdv22","location":{"lat":47.4721,"lon":-0.552937}},{"id":"rdv23","location":{"lat":47.475,"lon":-0.569292}},{"id":"rdv24","location":{"lat":47.4762,"lon":-0.551561}},{"id":"rdv25","location":{"lat":47.4707,"lon":-0.55342}},{"id":"rdv26","location":{"lat":47.4734,"lon":-0.553227}},{"id":"rdv27","location":{"lat":47.4772,"lon":-0.560892}},{"id":"rdv28","location":{"lat":47.4731,"lon":-0.549123}},{"id":"rdv29","location":{"lat":47.4444,"lon":-0.540579}},{"id":"rdv30","location":{"lat":47.4487,"lon":-0.551382}},{"id":"rdv31","location":{"lat":47.4733,"lon":-0.546593}},{"id":"rdv32","location":{"lat":47.477,"lon":-0.532281}},{"id":"rdv33","location":{"lat":47.4693,"lon":-0.561345}},{"id":"rdv34","location":{"lat":47.4647,"lon":-0.556389}},{"id":"rdv35","location":{"lat":48.8693,"lon":2.3502}},{"id":"rdv36","location":{"lat":47.541,"lon":-0.101231}},{"id":"rdv37","location":{"lat":47.4402,"lon":-0.195214}},{"id":"rdv38","location":{"lat":47.4402,"lon":-0.195214}},{"id":"rdv39","location":{"lat":47.4402,"lon":-0.195214}},{"id":"rdv40","location":{"lat":47.4784,"lon":-0.630341}},{"id":"rdv41","location":{"lat":47.3827,"lon":-0.109054}},{"id":"rdv42","location":{"lat":47.4742,"lon":-0.635502}},{"id":"rdv43","location":{"lat":47.4691,"lon":-0.616239}},{"id":"rdv44","location":{"lat":47.3786,"lon":-0.110535}},{"id":"rdv45","location":{"lat":47.4846,"lon":-0.627114}},{"id":"rdv46","location":{"lat":47.4333,"lon":-0.529787}},{"id":"rdv47","location":{"lat":47.4484,"lon":-0.507974}},{"id":"rdv48","location":{"lat":47.5202,"lon":-0.581762}},{"id":"rdv49","location":{"lat":47.4929,"lon":-0.223567}},{"id":"rdv50","location":{"lat":47.4784,"lon":-0.563166}},{"id":"rdv51","location":{"lat":47.4601,"lon":-0.533809}},{"id":"rdv52","location":{"lat":47.4601,"lon":-0.533809}},{"id":"rdv53","location":{"lat":47.4734,"lon":-0.546325}},{"id":"rdv54","location":{"lat":47.452,"lon":-0.545653}},{"id":"rdv55","location":{"lat":47.4712,"lon":-0.550689}},{"id":"rdv56","location":{"lat":47.4687,"lon":-0.549608}},{"id":"rdv57","location":{"lat":47.4736,"lon":-0.542109}},{"id":"rdv58","location":{"lat":47.4642,"lon":-0.522229}},{"id":"rdv59","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv60","location":{"lat":47.4779,"lon":-0.560474}},{"id":"rdv61","location":{"lat":47.4657,"lon":-0.553693}},{"id":"rdv62","location":{"lat":47.4712,"lon":-0.553952}},{"id":"rdv63","location":{"lat":47.4652,"lon":-0.545167}},{"id":"rdv64","location":{"lat":47.4652,"lon":-0.545167}},{"id":"rdv65","location":{"lat":47.4712,"lon":-0.554067}},{"id":"rdv66","location":{"lat":47.4698,"lon":-0.555258}},{"id":"rdv67","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv68","location":{"lat":47.4651,"lon":-0.558679}},{"id":"rdv69","location":{"lat":47.47,"lon":-0.548683}},{"id":"rdv70","location":{"lat":47.47,"lon":-0.548683}},{"id":"rdv71","location":{"lat":47.4531,"lon":-0.535406}},{"id":"rdv72","location":{"lat":47.4588,"lon":-0.559277}},{"id":"rdv73","location":{"lat":47.4737,"lon":-0.553051}},{"id":"rdv74","location":{"lat":47.4537,"lon":-0.526583}},{"id":"rdv75","location":{"lat":47.4725,"lon":-0.560698}},{"id":"rdv76","location":{"lat":47.4721,"lon":-0.590716}},{"id":"rdv77","location":{"lat":47.467,"lon":-0.558908}},{"id":"rdv78","location":{"lat":47.4724,"lon":-0.554352}},{"id":"rdv79","location":{"lat":47.471,"lon":-0.566757}},{"id":"rdv80","location":{"lat":47.4592,"lon":-0.604392}},{"id":"rdv81","location":{"lat":47.4583,"lon":-0.530444}},{"id":"rdv82","location":{"lat":47.4653,"lon":-0.545309}},{"id":"rdv83","location":{"lat":48.8693,"lon":2.3502}},{"id":"rdv84","location":{"lat":48.8693,"lon":2.3502}},{"id":"rdv85","location":{"lat":47.5014,"lon":-0.599646}},{"id":"rdv86","location":{"lat":47.5014,"lon":-0.599646}},{"id":"rdv87","location":{"lat":47.4407,"lon":-0.222658}},{"id":"rdv88","location":{"lat":47.4846,"lon":-0.627114}},{"id":"rdv89","location":{"lat":47.3786,"lon":-0.110535}},{"id":"rdv90","location":{"lat":47.4846,"lon":-0.627114}},{"id":"rdv91","location":{"lat":47.3827,"lon":-0.109054}},{"id":"rdv92","location":{"lat":47.4784,"lon":-0.630341}},{"id":"rdv93","location":{"lat":47.4784,"lon":-0.630341}},{"id":"rdv94","location":{"lat":47.3827,"lon":-0.109054}},{"id":"rdv95","location":{"lat":47.4784,"lon":-0.630341}},{"id":"rdv96","location":{"lat":47.3827,"lon":-0.109054}},{"id":"rdv97","location":{"lat":47.5978,"lon":-0.700641}},{"id":"rdv98","location":{"lat":47.3332,"lon":-0.436299}},{"id":"rdv99","location":{"lat":47.288,"lon":-0.43298}},{"id":"rdv100","location":{"lat":47.3795,"lon":-0.643668}},{"id":"rdv101","location":{"lat":47.4601,"lon":-0.533809}},{"id":"rdv102","location":{"lat":47.4722,"lon":-0.551967}},{"id":"rdv103","location":{"lat":47.4706,"lon":-0.552721}},{"id":"rdv104","location":{"lat":47.485,"lon":-0.526242}},{"id":"rdv105","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv106","location":{"lat":47.4514,"lon":-0.54895}},{"id":"rdv107","location":{"lat":47.4919,"lon":-0.547877}},{"id":"rdv108","location":{"lat":47.4776,"lon":-0.544867}},{"id":"rdv109","location":{"lat":47.4458,"lon":-0.560046}},{"id":"rdv110","location":{"lat":47.4764,"lon":-0.542889}},{"id":"rdv111","location":{"lat":47.4628,"lon":-0.536248}},{"id":"rdv112","location":{"lat":47.4704,"lon":-0.552052}},{"id":"rdv113","location":{"lat":47.4664,"lon":-0.549984}},{"id":"rdv114","location":{"lat":47.4603,"lon":-0.616861}},{"id":"rdv115","location":{"lat":47.4919,"lon":-0.547877}},{"id":"rdv116","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv117","location":{"lat":47.5018,"lon":-0.517146}},{"id":"rdv118","location":{"lat":47.4797,"lon":-0.527312}},{"id":"rdv119","location":{"lat":47.4736,"lon":-0.559217}},{"id":"rdv120","location":{"lat":47.4733,"lon":-0.546593}},{"id":"rdv121","location":{"lat":47.4487,"lon":-0.56085}},{"id":"rdv122","location":{"lat":47.4506,"lon":-0.54634}},{"id":"rdv123","location":{"lat":47.4884,"lon":-0.56086}},{"id":"rdv124","location":{"lat":47.471,"lon":-0.553518}},{"id":"rdv125","location":{"lat":47.4729,"lon":-0.561497}},{"id":"rdv126","location":{"lat":47.4897,"lon":-0.507567}},{"id":"rdv127","location":{"lat":47.4549,"lon":-0.560897}},{"id":"p00001198","location":{"lat":47.4968,"lon":-0.619151}},{"id":"p00000294_2","location":{"lat":47.4407,"lon":-0.222658}},{"id":"p00000731_1","location":{"lat":47.4338,"lon":-0.223433}},{"id":"p00001113","location":{"lat":47.5039,"lon":-0.791659}},{"id":"p00010612","location":{"lat":47.5019,"lon":-0.422171}},{"id":"p00000111","location":{"lat":47.6629,"lon":-0.244618}},{"id":"p00000489","location":{"lat":47.3827,"lon":-0.109054}},{"id":"p00005445_1","location":{"lat":47.5289,"lon":-0.610066}},{"id":"p00014175_1","location":{"lat":47.3573,"lon":-0.553444}},{"id":"p00000511_1","location":{"lat":47.3574,"lon":-0.551212}},{"id":"p00000511_2","location":{"lat":47.3586,"lon":-0.551899}},{"id":"p00013519_1","location":{"lat":47.3993,"lon":-0.527441}},{"id":"p00000257_1","location":{"lat":47.3996,"lon":-0.539386}},{"id":"p00016999","location":{"lat":47.4006,"lon":-0.535082}},{"id":"p00012043","location":{"lat":47.3984,"lon":-0.544026}},{"id":"p00012956","location":{"lat":47.3988,"lon":-0.529466}},{"id":"p00012955","location":{"lat":47.3989,"lon":-0.528207}},{"id":"p00005447","location":{"lat":47.4091,"lon":-0.32026}},{"id":"p00016677","location":{"lat":47.2305,"lon":-0.071593}},{"id":"p00001507_1","location":{"lat":47.5901,"lon":-0.359223}},{"id":"p00014285","location":{"lat":47.478,"lon":-0.497588}},{"id":"p00001830_1","location":{"lat":47.4654,"lon":-0.499294}},{"id":"p00002094","location":{"lat":47.4269,"lon":-0.551697}},{"id":"p00015580","location":{"lat":47.4088,"lon":-0.760619}},{"id":"p00016073","location":{"lat":47.4088,"lon":-0.760619}},{"id":"p00000706","location":{"lat":47.4568,"lon":-0.661627}},{"id":"p00000053_1","location":{"lat":47.3707,"lon":-0.496747}},{"id":"p00000301","location":{"lat":47.3991,"lon":-0.513324}},{"id":"p00015699_1","location":{"lat":47.5003,"lon":-0.489976}},{"id":"p00004444_1","location":{"lat":47.5128,"lon":-0.471117}},{"id":"p00000259_1","location":{"lat":47.4274,"lon":-0.547}},{"id":"p00000259_2","location":{"lat":47.4252,"lon":-0.561946}},{"id":"p00012057_1","location":{"lat":47.4251,"lon":-0.56448}},{"id":"p00000809","location":{"lat":47.267,"lon":-0.50325}},{"id":"p00001821_1","location":{"lat":47.6116,"lon":-0.471595}},{"id":"p00013867","location":{"lat":47.4529,"lon":-0.468028}},{"id":"p00000849","location":{"lat":47.4489,"lon":-0.474029}},{"id":"p00015255","location":{"lat":47.4478,"lon":-0.465395}},{"id":"p00000335","location":{"lat":47.4466,"lon":-0.495939}},{"id":"p00015378","location":{"lat":47.4424,"lon":-0.48255}},{"id":"p00015301","location":{"lat":47.4527,"lon":-0.467693}},{"id":"pSociete","location":{"lat":47.4823,"lon":-0.503304}}],"vehicles":[{"id":"201707079","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":407200,"end":436000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017070729","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":407200,"end":436000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017070730","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":407200,"end":436000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017070731","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":407200,"end":436000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"201707109","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":666400,"end":695200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071029","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":666400,"end":695200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071030","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":666400,"end":695200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071031","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":666400,"end":695200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"201707119","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":752800,"end":781600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071129","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":752800,"end":781600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071130","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":752800,"end":781600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071131","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":752800,"end":781600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"201707129","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":839200,"end":868000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071229","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":839200,"end":868000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071230","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":839200,"end":868000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071231","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":839200,"end":868000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"201707139","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":925600,"end":954400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071329","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":925600,"end":954400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071330","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":925600,"end":954400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071331","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":925600,"end":954400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071729","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1271200,"end":1300000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071730","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1271200,"end":1300000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071731","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1271200,"end":1300000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071829","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1357600,"end":1386400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071830","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1357600,"end":1386400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071831","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1357600,"end":1386400},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017071930","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1444000,"end":1472800},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017071931","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1444000,"end":1472800},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072030","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1530400,"end":1559200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017072131","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1616800,"end":1645600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072430","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1876000,"end":1904800},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017072431","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1876000,"end":1904800},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072529","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1962400,"end":1991200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072530","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1962400,"end":1991200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017072531","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":1962400,"end":1991200},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072630","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2048800,"end":2077600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017072729","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2135200,"end":2164000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017072730","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2135200,"end":2164000},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]},{"id":"2017073129","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2480800,"end":2509600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["2"]]},{"id":"2017073130","router_mode":"car","router_dimension":"time","duration":28800,"timewindow":{"start":2480800,"end":2509600},"start_point_id":"pSociete","end_point_id":"pSociete","cost_fixed":0,"cost_time_multiplier":1,"skills":[["1"]]}],"services":[{"id":"service1","type":"service","priority":0,"sticky_vehicle_ids":["201707079"],"activity":{"point_id":"rdv1","timewindows":[{"start":407200,"end":410800}]}},{"id":"service2","type":"service","priority":0,"sticky_vehicle_ids":["201707079"],"activity":{"point_id":"rdv2","timewindows":[{"start":410800,"end":414400}]}},{"id":"service3","type":"service","priority":0,"sticky_vehicle_ids":["201707119"],"activity":{"point_id":"rdv3","timewindows":[{"start":763600,"end":767200}]}},{"id":"service4","type":"service","priority":0,"sticky_vehicle_ids":["201707119"],"activity":{"point_id":"rdv4","timewindows":[{"start":770800,"end":774400}]}},{"id":"service5","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv5","timewindows":[{"start":839200,"end":842800}]}},{"id":"service6","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv6","timewindows":[{"start":842800,"end":850000}]}},{"id":"service7","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv7","timewindows":[{"start":850000,"end":853600}]}},{"id":"service8","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv8","timewindows":[{"start":853600,"end":857200}]}},{"id":"service9","type":"service","priority":0,"sticky_vehicle_ids":["201707129"],"activity":{"point_id":"rdv9","timewindows":[{"start":857200,"end":858100}]}},{"id":"service10","type":"service","priority":0,"sticky_vehicle_ids":["201707139"],"activity":{"point_id":"rdv10","timewindows":[{"start":925600,"end":947200}]}},{"id":"service11","type":"service","priority":0,"sticky_vehicle_ids":["2017071129"],"activity":{"point_id":"rdv11","timewindows":[{"start":752800,"end":756400}]}},{"id":"service12","type":"service","priority":0,"sticky_vehicle_ids":["2017071129"],"activity":{"point_id":"rdv12","timewindows":[{"start":756400,"end":770800}]}},{"id":"service13","type":"service","priority":0,"sticky_vehicle_ids":["2017071229"],"activity":{"point_id":"rdv13","timewindows":[{"start":839200,"end":842800}]}},{"id":"service14","type":"service","priority":0,"sticky_vehicle_ids":["2017071229"],"activity":{"point_id":"rdv14","timewindows":[{"start":842800,"end":846400}]}},{"id":"service15","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv15","timewindows":[{"start":1271200,"end":1274800}]}},{"id":"service16","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv16","timewindows":[{"start":1274800,"end":1280200}]}},{"id":"service17","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv17","timewindows":[{"start":1280200,"end":1283800}]}},{"id":"service18","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv18","timewindows":[{"start":1283800,"end":1287400}]}},{"id":"service19","type":"service","priority":0,"sticky_vehicle_ids":["2017071729"],"activity":{"point_id":"rdv19","timewindows":[{"start":1287400,"end":1294600}]}},{"id":"service20","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv20","timewindows":[{"start":1357600,"end":1361200}]}},{"id":"service21","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv21","timewindows":[{"start":1361200,"end":1364800}]}},{"id":"service22","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv22","timewindows":[{"start":1364800,"end":1366600}]}},{"id":"service23","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv23","timewindows":[{"start":1366600,"end":1370200}]}},{"id":"service24","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv24","timewindows":[{"start":1370200,"end":1372000}]}},{"id":"service25","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv25","timewindows":[{"start":1372000,"end":1375600}]}},{"id":"service26","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv26","timewindows":[{"start":1375600,"end":1377400}]}},{"id":"service27","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv27","timewindows":[{"start":1377400,"end":1379200}]}},{"id":"service28","type":"service","priority":0,"sticky_vehicle_ids":["2017071829"],"activity":{"point_id":"rdv28","timewindows":[{"start":1379200,"end":1381000}]}},{"id":"service29","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv29","timewindows":[{"start":1962400,"end":1966000}]}},{"id":"service30","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv30","timewindows":[{"start":1966000,"end":1971400}]}},{"id":"service31","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv31","timewindows":[{"start":1971400,"end":1975000}]}},{"id":"service32","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv32","timewindows":[{"start":1975000,"end":1978600}]}},{"id":"service33","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv33","timewindows":[{"start":1978600,"end":1982200}]}},{"id":"service34","type":"service","priority":0,"sticky_vehicle_ids":["2017072529"],"activity":{"point_id":"rdv34","timewindows":[{"start":1982200,"end":1985800}]}},{"id":"service35","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv35","timewindows":[{"start":2135200,"end":2139700}]}},{"id":"service36","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv36","timewindows":[{"start":2140600,"end":2158600}]}},{"id":"service37","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv37","timewindows":[{"start":2140600,"end":2144200}]}},{"id":"service38","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv38","timewindows":[{"start":2144200,"end":2151400}]}},{"id":"service39","type":"service","priority":0,"sticky_vehicle_ids":["2017072729"],"activity":{"point_id":"rdv39","timewindows":[{"start":2151400,"end":2158600}]}},{"id":"service40","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv40","timewindows":[{"start":2480800,"end":2488000}]}},{"id":"service41","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv41","timewindows":[{"start":2480800,"end":2495200}]}},{"id":"service42","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv42","timewindows":[{"start":2488000,"end":2493400}]}},{"id":"service43","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv43","timewindows":[{"start":2493400,"end":2497000}]}},{"id":"service44","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv44","timewindows":[{"start":2495200,"end":2500600}]}},{"id":"service45","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv45","timewindows":[{"start":2497000,"end":2502400}]}},{"id":"service46","type":"service","priority":0,"sticky_vehicle_ids":["2017073129"],"activity":{"point_id":"rdv46","timewindows":[{"start":2500600,"end":2504200}]}},{"id":"service47","type":"service","priority":0,"sticky_vehicle_ids":["2017071130"],"activity":{"point_id":"rdv47","timewindows":[{"start":752800,"end":763600}]}},{"id":"service48","type":"service","priority":0,"sticky_vehicle_ids":["2017071130"],"activity":{"point_id":"rdv48","timewindows":[{"start":763600,"end":767200}]}},{"id":"service49","type":"service","priority":0,"sticky_vehicle_ids":["2017071130"],"activity":{"point_id":"rdv49","timewindows":[{"start":767200,"end":770800}]}},{"id":"service50","type":"service","priority":0,"sticky_vehicle_ids":["2017071130"],"activity":{"point_id":"rdv50","timewindows":[{"start":770800,"end":774400}]}},{"id":"service51","type":"service","priority":0,"sticky_vehicle_ids":["2017071230"],"activity":{"point_id":"rdv51","timewindows":[{"start":839200,"end":846400}]}},{"id":"service52","type":"service","priority":0,"sticky_vehicle_ids":["2017071330"],"activity":{"point_id":"rdv52","timewindows":[{"start":925600,"end":932800}]}},{"id":"service53","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv53","timewindows":[{"start":1271200,"end":1278400}]}},{"id":"service54","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv54","timewindows":[{"start":1278400,"end":1282000}]}},{"id":"service55","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv55","timewindows":[{"start":1282000,"end":1287400}]}},{"id":"service56","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv56","timewindows":[{"start":1287400,"end":1291000}]}},{"id":"service57","type":"service","priority":0,"sticky_vehicle_ids":["2017071730"],"activity":{"point_id":"rdv57","timewindows":[{"start":1291000,"end":1294600}]}},{"id":"service58","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv58","timewindows":[{"start":1357600,"end":1361200}]}},{"id":"service59","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv59","timewindows":[{"start":1361200,"end":1364800}]}},{"id":"service60","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv60","timewindows":[{"start":1364800,"end":1368400}]}},{"id":"service61","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv61","timewindows":[{"start":1368400,"end":1372000}]}},{"id":"service62","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv62","timewindows":[{"start":1372000,"end":1373800}]}},{"id":"service63","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv63","timewindows":[{"start":1373800,"end":1377400}]}},{"id":"service64","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv64","timewindows":[{"start":1377400,"end":1379200}]}},{"id":"service65","type":"service","priority":0,"sticky_vehicle_ids":["2017071830"],"activity":{"point_id":"rdv65","timewindows":[{"start":1379200,"end":1381000}]}},{"id":"service66","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv66","timewindows":[{"start":1444000,"end":1447600}]}},{"id":"service67","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv67","timewindows":[{"start":1447600,"end":1451200}]}},{"id":"service68","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv68","timewindows":[{"start":1451200,"end":1454800}]}},{"id":"service69","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv69","timewindows":[{"start":1454800,"end":1462000}]}},{"id":"service70","type":"service","priority":0,"sticky_vehicle_ids":["2017071930"],"activity":{"point_id":"rdv70","timewindows":[{"start":1462000,"end":1465600}]}},{"id":"service71","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv71","timewindows":[{"start":1530400,"end":1535800}]}},{"id":"service72","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv72","timewindows":[{"start":1535800,"end":1539400}]}},{"id":"service73","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv73","timewindows":[{"start":1539400,"end":1543000}]}},{"id":"service74","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv74","timewindows":[{"start":1543000,"end":1546600}]}},{"id":"service75","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv75","timewindows":[{"start":1546600,"end":1550200}]}},{"id":"service76","type":"service","priority":0,"sticky_vehicle_ids":["2017072030"],"activity":{"point_id":"rdv76","timewindows":[{"start":1550200,"end":1553800}]}},{"id":"service77","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv77","timewindows":[{"start":1876000,"end":1879600}]}},{"id":"service78","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv78","timewindows":[{"start":1879600,"end":1883200}]}},{"id":"service79","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv79","timewindows":[{"start":1883200,"end":1886800}]}},{"id":"service80","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv80","timewindows":[{"start":1886800,"end":1890400}]}},{"id":"service81","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv81","timewindows":[{"start":1890400,"end":1894000}]}},{"id":"service82","type":"service","priority":0,"sticky_vehicle_ids":["2017072430"],"activity":{"point_id":"rdv82","timewindows":[{"start":1894000,"end":1897600}]}},{"id":"service83","type":"service","priority":0,"sticky_vehicle_ids":["2017072530"],"activity":{"point_id":"rdv83","timewindows":[{"start":1962400,"end":1966900}]}},{"id":"service84","type":"service","priority":0,"sticky_vehicle_ids":["2017072630"],"activity":{"point_id":"rdv84","timewindows":[{"start":2048800,"end":2052400}]}},{"id":"service85","type":"service","priority":0,"sticky_vehicle_ids":["2017072730"],"activity":{"point_id":"rdv85","timewindows":[{"start":2135200,"end":2146000}]}},{"id":"service86","type":"service","priority":0,"sticky_vehicle_ids":["2017072730"],"activity":{"point_id":"rdv86","timewindows":[{"start":2146000,"end":2149600}]}},{"id":"service87","type":"service","priority":0,"sticky_vehicle_ids":["2017072730"],"activity":{"point_id":"rdv87","timewindows":[{"start":2149600,"end":2156800}]}},{"id":"service88","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv88","timewindows":[{"start":2480800,"end":2484400}]}},{"id":"service89","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv89","timewindows":[{"start":2480800,"end":2484400}]}},{"id":"service90","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv90","timewindows":[{"start":2484400,"end":2488000}]}},{"id":"service91","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv91","timewindows":[{"start":2484400,"end":2491600}]}},{"id":"service92","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv92","timewindows":[{"start":2488000,"end":2489800}]}},{"id":"service93","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv93","timewindows":[{"start":2489800,"end":2493400}]}},{"id":"service94","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv94","timewindows":[{"start":2491600,"end":2497000}]}},{"id":"service95","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv95","timewindows":[{"start":2493400,"end":2498800}]}},{"id":"service96","type":"service","priority":0,"sticky_vehicle_ids":["2017073130"],"activity":{"point_id":"rdv96","timewindows":[{"start":2497000,"end":2504200}]}},{"id":"service97","type":"service","priority":0,"sticky_vehicle_ids":["2017071131"],"activity":{"point_id":"rdv97","timewindows":[{"start":752800,"end":756400}]}},{"id":"service98","type":"service","priority":0,"sticky_vehicle_ids":["2017071131"],"activity":{"point_id":"rdv98","timewindows":[{"start":756400,"end":760000}]}},{"id":"service99","type":"service","priority":0,"sticky_vehicle_ids":["2017071131"],"activity":{"point_id":"rdv99","timewindows":[{"start":760000,"end":763600}]}},{"id":"service100","type":"service","priority":0,"sticky_vehicle_ids":["2017071131"],"activity":{"point_id":"rdv100","timewindows":[{"start":763600,"end":767200}]}},{"id":"service101","type":"service","priority":0,"sticky_vehicle_ids":["2017071331"],"activity":{"point_id":"rdv101","timewindows":[{"start":925600,"end":947200}]}},{"id":"service102","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv102","timewindows":[{"start":1271200,"end":1274800}]}},{"id":"service103","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv103","timewindows":[{"start":1274800,"end":1278400}]}},{"id":"service104","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv104","timewindows":[{"start":1278400,"end":1282000}]}},{"id":"service105","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv105","timewindows":[{"start":1282000,"end":1291000}]}},{"id":"service106","type":"service","priority":0,"sticky_vehicle_ids":["2017071731"],"activity":{"point_id":"rdv106","timewindows":[{"start":1291000,"end":1294600}]}},{"id":"service107","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv107","timewindows":[{"start":1357600,"end":1361200}]}},{"id":"service108","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv108","timewindows":[{"start":1361200,"end":1368400}]}},{"id":"service109","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv109","timewindows":[{"start":1368400,"end":1373800}]}},{"id":"service110","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv110","timewindows":[{"start":1373800,"end":1377400}]}},{"id":"service111","type":"service","priority":0,"sticky_vehicle_ids":["2017071831"],"activity":{"point_id":"rdv111","timewindows":[{"start":1377400,"end":1381000}]}},{"id":"service112","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv112","timewindows":[{"start":1444000,"end":1447600}]}},{"id":"service113","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv113","timewindows":[{"start":1447600,"end":1451200}]}},{"id":"service114","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv114","timewindows":[{"start":1451200,"end":1454800}]}},{"id":"service115","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv115","timewindows":[{"start":1454800,"end":1458400}]}},{"id":"service116","type":"service","priority":0,"sticky_vehicle_ids":["2017071931"],"activity":{"point_id":"rdv116","timewindows":[{"start":1458400,"end":1467400}]}},{"id":"service117","type":"service","priority":0,"sticky_vehicle_ids":["2017072131"],"activity":{"point_id":"rdv117","timewindows":[{"start":1616800,"end":1629400}]}},{"id":"service118","type":"service","priority":0,"sticky_vehicle_ids":["2017072131"],"activity":{"point_id":"rdv118","timewindows":[{"start":1629400,"end":1633000}]}},{"id":"service119","type":"service","priority":0,"sticky_vehicle_ids":["2017072131"],"activity":{"point_id":"rdv119","timewindows":[{"start":1633000,"end":1636600}]}},{"id":"service120","type":"service","priority":0,"sticky_vehicle_ids":["2017072131"],"activity":{"point_id":"rdv120","timewindows":[{"start":1636600,"end":1640200}]}},{"id":"service121","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv121","timewindows":[{"start":1876000,"end":1881400}]}},{"id":"service122","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv122","timewindows":[{"start":1881400,"end":1886800}]}},{"id":"service123","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv123","timewindows":[{"start":1886800,"end":1890400}]}},{"id":"service124","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv124","timewindows":[{"start":1890400,"end":1894000}]}},{"id":"service125","type":"service","priority":0,"sticky_vehicle_ids":["2017072431"],"activity":{"point_id":"rdv125","timewindows":[{"start":1894000,"end":1897600}]}},{"id":"service126","type":"service","priority":0,"sticky_vehicle_ids":["2017072531"],"activity":{"point_id":"rdv126","timewindows":[{"start":1962400,"end":1973200}]}},{"id":"service127","type":"service","priority":0,"sticky_vehicle_ids":["2017072531"],"activity":{"point_id":"rdv127","timewindows":[{"start":1973200,"end":1977700}]}},{"id":"R1169","type":"service","activity":{"point_id":"p00001198","duration":28800,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1079","type":"service","activity":{"point_id":"p00000294_2","duration":18000,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R579","type":"service","activity":{"point_id":"p00000731_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R284","type":"service","activity":{"point_id":"p00001113","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R953","type":"service","activity":{"point_id":"p00010612","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1187","type":"service","activity":{"point_id":"p00000111","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1183","type":"service","activity":{"point_id":"p00000489","duration":28800,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R437","type":"service","activity":{"point_id":"p00005445_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R833","type":"service","activity":{"point_id":"p00014175_1","duration":1800,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1168","type":"service","activity":{"point_id":"p00000511_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1167","type":"service","activity":{"point_id":"p00000511_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R858","type":"service","activity":{"point_id":"p00000511_2","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R802","type":"service","activity":{"point_id":"p00013519_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1268","type":"service","activity":{"point_id":"p00000257_1","duration":1800,"timewindows":[{"start":378400,"end":2538340}]},"skills":["1"]},{"id":"R1269","type":"service","activity":{"point_id":"p00000257_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]},"skills":["1"]},{"id":"R1290","type":"service","activity":{"point_id":"p00016999","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R693","type":"service","activity":{"point_id":"p00012043","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1227","type":"service","activity":{"point_id":"p00012956","duration":18000,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R767","type":"service","activity":{"point_id":"p00012955","duration":1800,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R642","type":"service","activity":{"point_id":"p00005447","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1086","type":"service","activity":{"point_id":"p00016677","duration":7200,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R820","type":"service","activity":{"point_id":"p00001507_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R850","type":"service","activity":{"point_id":"p00014285","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R851","type":"service","activity":{"point_id":"p00014285","duration":9000,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R220","type":"service","activity":{"point_id":"p00001830_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R52","type":"service","activity":{"point_id":"p00002094","duration":9900,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1154","type":"service","activity":{"point_id":"p00015580","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1131","type":"service","activity":{"point_id":"p00016073","duration":7200,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R559","type":"service","activity":{"point_id":"p00000706","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R461","type":"service","activity":{"point_id":"p00000053_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R356","type":"service","activity":{"point_id":"p00000301","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R962","type":"service","activity":{"point_id":"p00015699_1","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1093","type":"service","activity":{"point_id":"p00015699_1","duration":5112,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R825","type":"service","activity":{"point_id":"p00004444_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R1035","type":"service","activity":{"point_id":"p00000259_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R481","type":"service","activity":{"point_id":"p00000259_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R482","type":"service","activity":{"point_id":"p00000259_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R652","type":"service","activity":{"point_id":"p00000259_2","duration":5400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R867","type":"service","activity":{"point_id":"p00012057_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R744","type":"service","activity":{"point_id":"p00000809","duration":14400,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R115","type":"service","activity":{"point_id":"p00001821_1","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R943","type":"service","activity":{"point_id":"p00013867","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R809","type":"service","activity":{"point_id":"p00000849","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R928","type":"service","activity":{"point_id":"p00015255","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R577","type":"service","activity":{"point_id":"p00000335","duration":7200,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R952","type":"service","activity":{"point_id":"p00015378","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}},{"id":"R950","type":"service","activity":{"point_id":"p00015301","duration":3600,"timewindows":[{"start":378400,"end":2538340}]}}]}} diff --git a/test/fixtures/ortools_multimodal_route.dump b/test/fixtures/ortools_multimodal_route.dump index b3489e033..e38f9ac22 100644 Binary files a/test/fixtures/ortools_multimodal_route.dump and b/test/fixtures/ortools_multimodal_route.dump differ diff --git a/test/fixtures/ortools_multimodal_route2.dump b/test/fixtures/ortools_multimodal_route2.dump index 836168b66..3b696d0b3 100644 Binary files a/test/fixtures/ortools_multimodal_route2.dump and b/test/fixtures/ortools_multimodal_route2.dump differ diff --git a/test/fixtures/ortools_one_route_many_stops.dump b/test/fixtures/ortools_one_route_many_stops.dump index b22db224c..e0e15fad6 100644 Binary files a/test/fixtures/ortools_one_route_many_stops.dump and b/test/fixtures/ortools_one_route_many_stops.dump differ diff --git a/test/fixtures/ortools_one_route_with_rest.dump b/test/fixtures/ortools_one_route_with_rest.dump index b219825dd..e59d8c728 100644 Binary files a/test/fixtures/ortools_one_route_with_rest.dump and b/test/fixtures/ortools_one_route_with_rest.dump differ diff --git a/test/fixtures/ortools_one_route_with_rest_and_waiting_time.dump b/test/fixtures/ortools_one_route_with_rest_and_waiting_time.dump index b96cd5c60..4af18424d 100644 Binary files a/test/fixtures/ortools_one_route_with_rest_and_waiting_time.dump and b/test/fixtures/ortools_one_route_with_rest_and_waiting_time.dump differ diff --git a/test/fixtures/ortools_one_route_with_single_mtws.dump b/test/fixtures/ortools_one_route_with_single_mtws.dump index 152e778e2..75a6a5ff3 100644 Binary files a/test/fixtures/ortools_one_route_with_single_mtws.dump and b/test/fixtures/ortools_one_route_with_single_mtws.dump differ diff --git a/test/fixtures/ortools_one_route_without_rest.dump b/test/fixtures/ortools_one_route_without_rest.dump index 0a06fff84..69bcb1e99 100644 Binary files a/test/fixtures/ortools_one_route_without_rest.dump and b/test/fixtures/ortools_one_route_without_rest.dump differ diff --git a/test/fixtures/ortools_one_route_without_rest_2.dump b/test/fixtures/ortools_one_route_without_rest_2.dump index df09b2101..922ac5393 100644 Binary files a/test/fixtures/ortools_one_route_without_rest_2.dump and b/test/fixtures/ortools_one_route_without_rest_2.dump differ diff --git a/test/fixtures/ortools_open_timewindows.dump b/test/fixtures/ortools_open_timewindows.dump index 2ead4502e..b6cb6d5c0 100644 Binary files a/test/fixtures/ortools_open_timewindows.dump and b/test/fixtures/ortools_open_timewindows.dump differ diff --git a/test/fixtures/ortools_optimize_each.dump b/test/fixtures/ortools_optimize_each.dump index 13cefe460..f5bb44e51 100644 Binary files a/test/fixtures/ortools_optimize_each.dump and b/test/fixtures/ortools_optimize_each.dump differ diff --git a/test/fixtures/ortools_performance_when_duration_limit.dump b/test/fixtures/ortools_performance_when_duration_limit.dump index 846a32c35..ab2808183 100644 Binary files a/test/fixtures/ortools_performance_when_duration_limit.dump and b/test/fixtures/ortools_performance_when_duration_limit.dump differ diff --git a/test/fixtures/ortools_single_route_with_route_order.dump b/test/fixtures/ortools_single_route_with_route_order.dump index b0248277b..1f1bed889 100644 Binary files a/test/fixtures/ortools_single_route_with_route_order.dump and b/test/fixtures/ortools_single_route_with_route_order.dump differ diff --git a/test/fixtures/ortools_single_route_with_route_order_2.dump b/test/fixtures/ortools_single_route_with_route_order_2.dump index 04c8174cd..187f2846f 100644 Binary files a/test/fixtures/ortools_single_route_with_route_order_2.dump and b/test/fixtures/ortools_single_route_with_route_order_2.dump differ diff --git a/test/fixtures/performance_12vl.dump b/test/fixtures/performance_12vl.dump index 8406605c9..1cfc725fa 100644 Binary files a/test/fixtures/performance_12vl.dump and b/test/fixtures/performance_12vl.dump differ diff --git a/test/fixtures/performance_13vl.dump b/test/fixtures/performance_13vl.dump index e4717fe5c..18d2b5eaa 100644 Binary files a/test/fixtures/performance_13vl.dump and b/test/fixtures/performance_13vl.dump differ diff --git a/test/fixtures/performance_britanny.dump b/test/fixtures/performance_britanny.dump index da4420f2d..197f58ad5 100644 Binary files a/test/fixtures/performance_britanny.dump and b/test/fixtures/performance_britanny.dump differ diff --git a/test/fixtures/pud_initial_routes.dump b/test/fixtures/pud_initial_routes.dump index effe98baf..5c8567aec 100644 Binary files a/test/fixtures/pud_initial_routes.dump and b/test/fixtures/pud_initial_routes.dump differ diff --git a/test/fixtures/quality_with_minimum_stops_in_route.dump b/test/fixtures/quality_with_minimum_stops_in_route.dump index b8570de30..9ee59bff1 100644 Binary files a/test/fixtures/quality_with_minimum_stops_in_route.dump and b/test/fixtures/quality_with_minimum_stops_in_route.dump differ diff --git a/test/fixtures/results_regularity.dump b/test/fixtures/results_regularity.dump index 11bbf76b8..3ab372cd8 100644 Binary files a/test/fixtures/results_regularity.dump and b/test/fixtures/results_regularity.dump differ diff --git a/test/fixtures/results_regularity_2.dump b/test/fixtures/results_regularity_2.dump index 840c62730..302d5755f 100644 Binary files a/test/fixtures/results_regularity_2.dump and b/test/fixtures/results_regularity_2.dump differ diff --git a/test/fixtures/route_initialisation.dump b/test/fixtures/route_initialisation.dump index 2c0d2895c..d5f6bc6e8 100644 Binary files a/test/fixtures/route_initialisation.dump and b/test/fixtures/route_initialisation.dump differ diff --git a/test/fixtures/same_point_day_relaxation.dump b/test/fixtures/same_point_day_relaxation.dump index 7c19185f1..5024272fd 100644 Binary files a/test/fixtures/same_point_day_relaxation.dump and b/test/fixtures/same_point_day_relaxation.dump differ diff --git a/test/fixtures/scheduling_and_ortools.dump b/test/fixtures/scheduling_and_ortools.dump index bf20653e1..a0ec69a63 100644 Binary files a/test/fixtures/scheduling_and_ortools.dump and b/test/fixtures/scheduling_and_ortools.dump differ diff --git a/test/fixtures/scheduling_with_post_process.dump b/test/fixtures/scheduling_with_post_process.dump index c94db39ec..2e37cfdfd 100644 Binary files a/test/fixtures/scheduling_with_post_process.dump and b/test/fixtures/scheduling_with_post_process.dump differ diff --git a/test/fixtures/treatment_site.dump b/test/fixtures/treatment_site.dump index 57a8fdd26..ef187f523 100644 Binary files a/test/fixtures/treatment_site.dump and b/test/fixtures/treatment_site.dump differ diff --git a/test/fixtures/two_phases_clustering_sched_with_freq_and_same_point_day_5veh.dump b/test/fixtures/two_phases_clustering_sched_with_freq_and_same_point_day_5veh.dump index 3dd766e45..21d1214ee 100644 Binary files a/test/fixtures/two_phases_clustering_sched_with_freq_and_same_point_day_5veh.dump and b/test/fixtures/two_phases_clustering_sched_with_freq_and_same_point_day_5veh.dump differ diff --git a/test/fixtures/vroom_optimize_each.dump b/test/fixtures/vroom_optimize_each.dump index f0b2022ee..896491f1b 100644 Binary files a/test/fixtures/vroom_optimize_each.dump and b/test/fixtures/vroom_optimize_each.dump differ diff --git a/test/fixtures/vrp_allow_partial_assigment_false.dump b/test/fixtures/vrp_allow_partial_assigment_false.dump index 230f25a6d..1edf6efb3 100644 Binary files a/test/fixtures/vrp_allow_partial_assigment_false.dump and b/test/fixtures/vrp_allow_partial_assigment_false.dump differ diff --git a/test/fixtures/vrp_ten_routes_with_rest.dump b/test/fixtures/vrp_ten_routes_with_rest.dump index 30df1e351..c1a509840 100644 Binary files a/test/fixtures/vrp_ten_routes_with_rest.dump and b/test/fixtures/vrp_ten_routes_with_rest.dump differ diff --git a/test/fixtures/without_same_point_day.dump b/test/fixtures/without_same_point_day.dump index f9c95f884..366e748c4 100644 Binary files a/test/fixtures/without_same_point_day.dump and b/test/fixtures/without_same_point_day.dump differ diff --git a/test/lib/interpreters/multi_trips_test.rb b/test/lib/interpreters/multi_trips_test.rb index 3cf427a20..f4d911b99 100644 --- a/test/lib/interpreters/multi_trips_test.rb +++ b/test/lib/interpreters/multi_trips_test.rb @@ -19,25 +19,6 @@ require 'date' class MultiTripsTest < Minitest::Test - def test_expand_vehicles_trips - vrp = VRP.lat_lon - vrp[:vehicles].first[:trips] = 2 - - vrp = Interpreters::MultiTrips.new.expand(TestHelper.create(vrp)) - - assert_equal 2, vrp.vehicles.size - assert_equal 1, vrp.relations.size - vrp.relations.each{ |relation| - assert_equal :vehicle_trips, relation.type - assert_includes relation.linked_vehicle_ids, 'vehicle_0_trip_0' - assert_includes relation.linked_vehicle_ids, 'vehicle_0_trip_1' - } - - Interpreters::MultiTrips.new.expand(vrp) # consecutive MultiTrips.expand should not produce any error neither inconsistency - assert_equal 2, vrp.vehicles.size - assert_equal 1, vrp.relations.size - end - def test_solve_vehicles_trips_capacity vrp = VRP.lat_lon_capacitated result = OptimizerWrapper.wrapper_vrp('demo', { services: { vrp: [:ortools] }}, TestHelper.create(vrp), nil) @@ -46,7 +27,12 @@ def test_solve_vehicles_trips_capacity # increasing number of trips increases overall available capacity and reduces unassigned : - vrp[:vehicles].first[:trips] = 2 + vrp[:vehicles] << vrp[:vehicles].first.dup + vrp[:vehicles].last[:id] += '_second_trip' + vrp[:relations] = [{ + type: 'vehicle_trips', + linked_vehicle_ids: [vrp[:vehicles].first[:id], vrp[:vehicles].last[:id]] + }] result = OptimizerWrapper.wrapper_vrp('demo', { services: { vrp: [:ortools] }}, TestHelper.create(vrp), nil) assert_equal 2, result[:routes].size assert_equal 2, result[:unassigned].size @@ -54,7 +40,9 @@ def test_solve_vehicles_trips_capacity routes_end = result[:routes].collect{ |route| route[:activities].last[:begin_time] } assert_operator routes_end[0], :<=, routes_start[1] - vrp[:vehicles].first[:trips] = 3 + vrp[:vehicles] << vrp[:vehicles].first.dup + vrp[:vehicles].last[:id] += '_third_trip' + vrp[:relations].first[:linked_vehicle_ids] << vrp[:vehicles].last[:id] result = OptimizerWrapper.wrapper_vrp('demo', { services: { vrp: [:ortools] }}, TestHelper.create(vrp), nil) assert_equal 3, result[:routes].size assert_empty result[:unassigned] @@ -68,14 +56,20 @@ def test_solve_vehicles_trips_capacity def test_solve_vehicles_trips_duration vrp = VRP.basic vrp[:matrices].first[:time] = vrp[:matrices].first[:time].collect{ |l| l.collect{ |v| v.positive? ? 4 : 0 } } - vrp[:vehicles].first[:duration] = 4 + vrp[:vehicles].first[:end_point_id] = vrp[:vehicles].first[:start_point_id] + vrp[:vehicles].first[:duration] = 10 result = OptimizerWrapper.wrapper_vrp('demo', { services: { vrp: [:ortools] }}, TestHelper.create(vrp), nil) assert_equal 1, result[:routes].size assert_equal 2, result[:unassigned].size # increasing number of trips increases overall available duration and reduces unassigned : - vrp[:vehicles].first[:trips] = 2 + vrp[:vehicles] << vrp[:vehicles].first.dup + vrp[:vehicles].last[:id] += '_second_trip' + vrp[:relations] = [{ + type: 'vehicle_trips', + linked_vehicle_ids: [vrp[:vehicles].first[:id], vrp[:vehicles].last[:id]] + }] result = OptimizerWrapper.wrapper_vrp('demo', { services: { vrp: [:ortools] }}, TestHelper.create(vrp), nil) assert_equal 2, result[:routes].size assert_equal 1, result[:unassigned].size @@ -83,7 +77,9 @@ def test_solve_vehicles_trips_duration routes_end = result[:routes].collect{ |route| route[:activities].last[:begin_time] } assert_operator routes_end[0], :<=, routes_start[1] - vrp[:vehicles].first[:trips] = 3 + vrp[:vehicles] << vrp[:vehicles].first.dup + vrp[:vehicles].last[:id] += '_third_trip' + vrp[:relations].first[:linked_vehicle_ids] << vrp[:vehicles].last[:id] result = OptimizerWrapper.wrapper_vrp('demo', { services: { vrp: [:ortools] }}, TestHelper.create(vrp), nil) assert_equal 3, result[:routes].size assert_empty result[:unassigned] diff --git a/test/real_cases_scheduling_test.rb b/test/real_cases_scheduling_test.rb index 4ca712146..060992996 100644 --- a/test/real_cases_scheduling_test.rb +++ b/test/real_cases_scheduling_test.rb @@ -75,7 +75,7 @@ def test_without_same_point_day result = OptimizerWrapper.wrapper_vrp('ortools', { services: { vrp: [:ortools] }}, vrp, nil) assert_equal expecting, result[:routes].sum{ |route| route[:activities].count{ |stop| stop[:service_id] } } + result[:unassigned].size unassigned = result[:unassigned].size - assert_equal 46, unassigned + assert_equal 49, unassigned vrp = TestHelper.load_vrp(self) vrp.resolution_solver = true @@ -235,7 +235,7 @@ def test_performance_12vl # voluntarily equal to watch evolution of scheduling algorithm performance assert_equal expected, seen, 'Do not have the expected number of total visits' - assert_equal 280, unassigned_visits.sum, 'Do not have the expected number of unassigned visits' + assert_equal 315, unassigned_visits.sum, 'Do not have the expected number of unassigned visits' end def test_minimum_stop_in_route @@ -251,7 +251,7 @@ def test_minimum_stop_in_route result = OptimizerWrapper.wrapper_vrp('ortools', { services: { vrp: [:ortools] }}, vrp, nil) assert result[:routes].all?{ |r| (r[:activities].size - 2).zero? || r[:activities].size - 2 >= 5 }, 'Expecting no route with less than 5 stops unless it is empty' assert_operator(should_remain_assigned, :<=, result[:routes].sum{ |r| r[:activities].size - 2 }) - assert_equal 19, result[:unassigned].size + assert_equal 21, result[:unassigned].size assert_equal vrp.visits, result[:routes].sum{ |r| r[:activities].count{ |a| a[:service_id] } } + result[:unassigned].size all_ids = (result[:routes].flat_map{ |route| route[:activities].collect{ |stop| stop[:service_id] } }.compact + result[:unassigned].collect{ |un| un[:service_id] }).uniq @@ -274,7 +274,7 @@ def test_performance_13vl # voluntarily equal to watch evolution of scheduling algorithm performance assert_equal expected, seen, 'Do not have the expected number of total visits' - assert_equal 294, unassigned_visits.sum, 'Do not have the expected number of unassigned visits' + assert_equal 298, unassigned_visits.sum, 'Do not have the expected number of unassigned visits' end def test_fill_days_and_post_processing @@ -287,7 +287,7 @@ def test_fill_days_and_post_processing assert_equal vrp.visits, result[:routes].sum{ |r| r[:activities].count{ |s| s[:service_id] } } + result[:unassigned].size, 'Do not have the expected number of total visits' - assert_equal 74, result[:unassigned].size, 'Do not have the expected number of unassigned visits' + assert_equal 39, result[:unassigned].size, 'Do not have the expected number of unassigned visits' end def test_treatment_site diff --git a/test/test_helper.rb b/test/test_helper.rb index ccd82daf4..832243328 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -68,16 +68,21 @@ def self.coerce(vrp) [vrp[:services], vrp[:shipments]].each{ |group| group&.each{ |s| - next if s.nil? - next if vrp.is_a?(Hash) && !s.key?(:visits_number) - - raise StandardError, "Service/Shipment #{s[:id]} visits_number (#{s[:visits_number]}) is invalid." unless s[:visits_number].is_a?(Integer) && s[:visits_number].positive? + s[:skills]&.map!(&:to_sym) [s[:activity] || s[:activities] || s[:pickup] || s[:delivery]].flatten.each{ |activity| next unless activity[:position] activity[:position] = activity[:position].to_sym } + + next if vrp.is_a?(Hash) && !s.key?(:visits_number) + + unless s[:visits_number].is_a?(Integer) && s[:visits_number].positive? + raise StandardError.new( + "Service/Shipment #{s[:id]} visits_number (#{s[:visits_number]}) is invalid." + ) + end } } @@ -102,9 +107,17 @@ def self.coerce(vrp) vrp[:configuration][:preprocessing][:partitions]&.each{ |partition| partition[:entity] = partition[:entity].to_sym } if vrp[:configuration] && vrp[:configuration][:preprocessing] vrp.preprocessing_partitions&.each{ |partition| partition[:entity] = partition[:entity].to_sym } if vrp.is_a?(Models::Vrp) - vrp.provide_original_info unless vrp.is_a?(Hash) # TODO: re-dump with this modification + vrp[:relations]&.each{ |r| r[:type] = r[:type]&.to_sym } - vrp[:relations]&.each{ |r| r[:type] = r[:type]&.to_sym } # TODO: re-dump with this modification + vrp[:vehicles]&.each{ |v| + next if v[:skills].to_a.empty? + + if v[:skills].first&.is_a?(Array) + v[:skills].each{ |set| set.map!(&:to_sym) } + else + v[:skills].map!(&:to_sym) + end + } vrp end