forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpdptw.cc
More file actions
377 lines (357 loc) · 16.3 KB
/
pdptw.cc
File metadata and controls
377 lines (357 loc) · 16.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
// Copyright 2010-2025 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Pickup and Delivery Problem with Time Windows.
// The overall objective is to minimize the length of the routes delivering
// quantities of goods between pickup and delivery locations, taking into
// account vehicle capacities and node time windows.
// Given a set of pairs of pickup and delivery nodes, find the set of routes
// visiting all the nodes, such that
// - corresponding pickup and delivery nodes are visited on the same route,
// - the pickup node is visited before the corresponding delivery node,
// - the quantity picked up at the pickup node is the same as the quantity
// delivered at the delivery node,
// - the total quantity carried by a vehicle at any time is less than its
// capacity,
// - each node must be visited within its time window (time range during which
// the node is accessible).
// The maximum number of vehicles used (i.e. the number of routes used) is
// specified in the data but can be overridden using the --pdp_force_vehicles
// flag.
//
// A further description of the problem can be found here:
// http://en.wikipedia.org/wiki/Vehicle_routing_problem
// http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.123.9965&rep=rep1&type=pdf.
// Reads data in the format defined by Li & Lim
// (https://www.sintef.no/projectweb/top/pdptw/li-lim-benchmark/documentation/).
#include <algorithm>
#include <cstdint>
#include <cstdlib>
#include <limits>
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include <vector>
#include "absl/algorithm/container.h"
#include "absl/base/log_severity.h"
#include "absl/flags/flag.h"
#include "absl/log/check.h"
#include "absl/log/globals.h"
#include "absl/log/log.h"
#include "absl/strings/str_format.h"
#include "absl/strings/string_view.h"
#include "google/protobuf/text_format.h"
#include "ortools/base/init_google.h"
#include "ortools/base/mathutil.h"
#include "ortools/base/timer.h"
#include "ortools/constraint_solver/routing.h"
#include "ortools/constraint_solver/routing_enums.pb.h"
#include "ortools/constraint_solver/routing_index_manager.h"
#include "ortools/constraint_solver/routing_parameters.h"
#include "ortools/constraint_solver/routing_parameters.pb.h"
#include "ortools/routing/parsers/lilim_parser.h"
#include "ortools/routing/parsers/simple_graph.h"
ABSL_FLAG(std::string, pdp_file, "",
"File containing the Pickup and Delivery Problem to solve.");
ABSL_FLAG(int, pdp_force_vehicles, 0,
"Force the number of vehicles used (maximum number of routes.");
ABSL_FLAG(bool, reduce_vehicle_cost_model, true,
"Overrides the homonymous field of "
"DefaultRoutingModelParameters().");
ABSL_FLAG(std::string, routing_search_parameters,
"first_solution_strategy:ALL_UNPERFORMED",
"Text proto RoutingSearchParameters (possibly partial) that will "
"override the DefaultRoutingSearchParameters()");
ABSL_FLAG(std::string, routing_model_parameters, "",
"Text proto RoutingModelParameters (possibly partial) that will "
"override the DefaultRoutingModelParameters()");
namespace operations_research {
// Returns the list of variables to use for the Tabu metaheuristic.
// The current list is:
// - Total cost of the solution,
// - Number of used vehicles,
// - Total schedule duration.
// TODO(user): add total waiting time.
std::vector<IntVar*> GetTabuVars(std::vector<IntVar*> existing_vars,
RoutingModel* routing) {
Solver* const solver = routing->solver();
std::vector<IntVar*> vars(std::move(existing_vars));
vars.push_back(routing->CostVar());
IntVar* used_vehicles = solver->MakeIntVar(0, routing->vehicles());
std::vector<IntVar*> is_used_vars;
// Number of vehicle used
is_used_vars.reserve(routing->vehicles());
for (int v = 0; v < routing->vehicles(); v++) {
is_used_vars.push_back(solver->MakeIsDifferentCstVar(
routing->NextVar(routing->Start(v)), routing->End(v)));
}
solver->AddConstraint(
solver->MakeEquality(solver->MakeSum(is_used_vars), used_vehicles));
vars.push_back(used_vehicles);
return vars;
}
// Scaling factor from callback.
template <typename C>
double ComputeScalingFactorFromCallback(const C& callback, int size) {
double max_value = 0;
for (int i = 0; i < size; ++i) {
for (int j = 0; j < size; ++j) {
max_value = std::max(max_value, callback(i, j));
}
}
const double max_scaled_total_distance =
(1LL << (std::numeric_limits<double>::digits - 2)) - 1;
const double max_scaled_distance = max_scaled_total_distance / size;
return max_scaled_distance / max_value;
}
void SetupModel(const routing::LiLimParser& parser,
const RoutingIndexManager& manager, RoutingModel* model,
RoutingSearchParameters* search_parameters) {
const int64_t kPenalty = 100000000;
const int64_t kFixedCost = 100000;
const int num_nodes = parser.NumberOfNodes();
const int64_t horizon =
absl::c_max_element(parser.time_windows(),
[](const routing::SimpleTimeWindow<int64_t>& a,
const routing::SimpleTimeWindow<int64_t>& b) {
return a.end < b.end;
})
->end;
const double scaling_factor = ComputeScalingFactorFromCallback(
[&parser](int64_t i, int64_t j) -> double {
const int depot = parser.Depot();
double fixed_cost = 0;
if (i == depot && j != depot) {
fixed_cost = kFixedCost;
} else if (i == j && i != depot) {
return kPenalty;
}
return fixed_cost + parser.GetTravelTime(i, j);
},
manager.num_nodes());
search_parameters->set_log_cost_scaling_factor(1.0 / scaling_factor);
const int vehicle_cost = model->RegisterTransitCallback(
[&parser, &manager, scaling_factor](int64_t i, int64_t j) {
return MathUtil::Round<int64_t>(
scaling_factor *
parser.GetDistance(manager.IndexToNode(i).value(),
manager.IndexToNode(j).value()));
});
model->SetArcCostEvaluatorOfAllVehicles(vehicle_cost);
model->SetFixedCostOfAllVehicles(
MathUtil::Round<int64_t>(kFixedCost * scaling_factor));
RoutingTransitCallback2 demand_evaluator =
[&parser, &manager](int64_t from_index, int64_t /*to_index*/) {
return parser.demands()[manager.IndexToNode(from_index).value()];
};
model->AddDimension(model->RegisterTransitCallback(demand_evaluator), 0,
parser.capacity(), /*fix_start_cumul_to_zero=*/true,
"demand");
RoutingTransitCallback2 time_evaluator = [&parser, &manager, scaling_factor](
int64_t from_index,
int64_t to_index) {
int64_t value = MathUtil::Round<int64_t>(
scaling_factor *
parser.GetTravelTime(manager.IndexToNode(from_index).value(),
manager.IndexToNode(to_index).value()));
return value;
};
model->AddDimension(model->RegisterTransitCallback(time_evaluator),
MathUtil::FastInt64Round(scaling_factor * horizon),
MathUtil::FastInt64Round(scaling_factor * horizon),
/*fix_start_cumul_to_zero=*/true, "time");
const RoutingDimension& time_dimension = model->GetDimensionOrDie("time");
Solver* const solver = model->solver();
for (int node = 0; node < num_nodes; ++node) {
const int64_t index =
manager.NodeToIndex(RoutingIndexManager::NodeIndex(node));
if (const std::optional<int> delivery = parser.GetDelivery(node);
delivery.has_value()) {
const int64_t delivery_index =
manager.NodeToIndex(RoutingIndexManager::NodeIndex(delivery.value()));
solver->AddConstraint(solver->MakeEquality(
model->VehicleVar(index), model->VehicleVar(delivery_index)));
solver->AddConstraint(
solver->MakeLessOrEqual(time_dimension.CumulVar(index),
time_dimension.CumulVar(delivery_index)));
model->AddPickupAndDelivery(index, delivery_index);
}
IntVar* const cumul = time_dimension.CumulVar(index);
const routing::SimpleTimeWindow<int64_t>& window =
parser.time_windows()[node];
cumul->SetMin(MathUtil::Round<int64_t>(scaling_factor * window.start));
cumul->SetMax(MathUtil::Round<int64_t>(scaling_factor * window.end));
}
if (search_parameters->local_search_metaheuristic() ==
LocalSearchMetaheuristic::GENERIC_TABU_SEARCH) {
// Create variable for the total schedule time of the solution.
// This will be used as one of the Tabu criteria.
// This is done here and not in GetTabuVarsCallback as it requires calling
// AddVariableMinimizedByFinalizer and this method must be called early.
std::vector<IntVar*> end_cumuls;
std::vector<IntVar*> start_cumuls;
for (int i = 0; i < model->vehicles(); ++i) {
end_cumuls.push_back(time_dimension.CumulVar(model->End(i)));
start_cumuls.push_back(time_dimension.CumulVar(model->Start(i)));
}
IntVar* total_time = solver->MakeIntVar(0, 99999999, "total");
solver->AddConstraint(solver->MakeEquality(
solver->MakeDifference(solver->MakeSum(end_cumuls),
solver->MakeSum(start_cumuls)),
total_time));
model->AddVariableMinimizedByFinalizer(total_time);
RoutingModel::GetTabuVarsCallback tabu_var_callback =
[total_time](RoutingModel* model) {
return GetTabuVars({total_time}, model);
};
model->SetTabuVarsCallback(tabu_var_callback);
}
// Adding penalty costs to allow skipping orders.
for (RoutingIndexManager::NodeIndex order(1); order < model->nodes();
++order) {
std::vector<int64_t> orders(1, manager.NodeToIndex(order));
model->AddDisjunction(orders,
MathUtil::Round<int64_t>(scaling_factor * kPenalty));
}
}
// Outputs a solution to the current model in a string.
std::string VerboseOutput(const RoutingModel& model,
const RoutingIndexManager& manager,
const Assignment& assignment,
const routing::LiLimParser& parser,
double scaling_factor) {
std::string output;
const RoutingDimension& time_dimension = model.GetDimensionOrDie("time");
const RoutingDimension& load_dimension = model.GetDimensionOrDie("demand");
for (int i = 0; i < model.vehicles(); ++i) {
absl::StrAppendFormat(&output, "Vehicle %d: ", i);
int64_t index = model.Start(i);
if (model.IsEnd(assignment.Value(model.NextVar(index)))) {
output.append("empty");
} else {
while (!model.IsEnd(index)) {
absl::StrAppendFormat(&output, "%d ",
manager.IndexToNode(index).value());
const IntVar* vehicle = model.VehicleVar(index);
absl::StrAppendFormat(&output, "Vehicle(%d) ",
assignment.Value(vehicle));
const IntVar* arrival = time_dimension.CumulVar(index);
absl::StrAppendFormat(
&output, "Time(%d..%d) ",
MathUtil::Round<int64_t>(assignment.Min(arrival) * scaling_factor),
MathUtil::Round<int64_t>(assignment.Max(arrival) * scaling_factor));
const IntVar* load = load_dimension.CumulVar(index);
absl::StrAppendFormat(&output, "Load(%d..%d) ", assignment.Min(load),
assignment.Max(load));
const int64_t next_index = assignment.Value(model.NextVar(index));
absl::StrAppendFormat(
&output, "Transit(%f) ",
parser.GetTravelTime(manager.IndexToNode(index).value(),
manager.IndexToNode(next_index).value()));
index = next_index;
}
output.append("Route end ");
const IntVar* vehicle = model.VehicleVar(index);
absl::StrAppendFormat(&output, "Vehicle(%d) ", assignment.Value(vehicle));
const IntVar* arrival = time_dimension.CumulVar(index);
absl::StrAppendFormat(
&output, "Time(%d..%d) ",
MathUtil::Round<int64_t>(assignment.Min(arrival) * scaling_factor),
MathUtil::Round<int64_t>(assignment.Max(arrival) * scaling_factor));
const IntVar* load = load_dimension.CumulVar(index);
absl::StrAppendFormat(&output, "Load(%d..%d) ", assignment.Min(load),
assignment.Max(load));
}
output.append("\n");
}
return output;
}
// Builds and solves a model from a file in the format defined by Li & Lim
// (https://www.sintef.no/projectweb/top/pdptw/li-lim-benchmark/documentation/).
bool LoadAndSolve(absl::string_view pdp_file,
const RoutingModelParameters& model_parameters,
RoutingSearchParameters& search_parameters) {
routing::LiLimParser parser;
if (!parser.LoadFile(pdp_file)) {
return false;
}
// Build pickup and delivery model.
const int num_nodes = parser.NumberOfNodes();
const int num_vehicles = parser.NumberOfVehicles();
const RoutingIndexManager::NodeIndex depot =
RoutingIndexManager::NodeIndex(parser.Depot());
RoutingIndexManager manager(num_nodes, num_vehicles, depot);
RoutingModel model(manager, model_parameters);
SetupModel(parser, manager, &model, &search_parameters);
// Solve pickup and delivery problem.
SimpleCycleTimer timer;
timer.Start();
const Assignment* assignment = model.SolveWithParameters(search_parameters);
timer.Stop();
LOG(INFO) << model.solver()->LocalSearchProfile();
if (nullptr != assignment) {
const double scaling_factor = search_parameters.log_cost_scaling_factor();
LOG(INFO) << VerboseOutput(model, manager, *assignment, parser,
scaling_factor);
const int64_t cost = assignment->ObjectiveValue();
LOG(INFO) << absl::StrFormat("Cost: %f", cost * scaling_factor);
int num_used_vehicles = 0;
int64_t total_fixed_cost = 0;
for (int v = 0; v < model.vehicles(); v++) {
if (model.IsVehicleUsed(*assignment, v)) {
num_used_vehicles++;
total_fixed_cost += model.GetFixedCostOfVehicle(v);
}
}
int skipped_nodes = 0;
int64_t total_penalty = 0;
for (int node = 0; node < model.Size(); node++) {
if (!model.IsEnd(node) && !model.IsStart(node) &&
assignment->Value(model.NextVar(node)) == node) {
skipped_nodes++;
for (RoutingModel::DisjunctionIndex disjunction :
model.GetDisjunctionIndices(node)) {
total_penalty += model.GetDisjunctionPenalty(disjunction);
}
}
}
LOG(INFO) << absl::StrFormat(
"Distance: %.2f",
(cost - total_fixed_cost - total_penalty) * scaling_factor);
LOG(INFO) << "Number of skipped nodes: " << skipped_nodes;
LOG(INFO) << "Number of used vehicles: " << num_used_vehicles;
LOG(INFO) << "Time: " << timer.Get();
return true;
}
return false;
}
} // namespace operations_research
int main(int argc, char** argv) {
absl::SetStderrThreshold(absl::LogSeverityAtLeast::kInfo);
InitGoogle(argv[0], &argc, &argv, true);
operations_research::RoutingModelParameters model_parameters =
operations_research::DefaultRoutingModelParameters();
model_parameters.set_reduce_vehicle_cost_model(
absl::GetFlag(FLAGS_reduce_vehicle_cost_model));
CHECK(google::protobuf::TextFormat::MergeFromString(
absl::GetFlag(FLAGS_routing_model_parameters), &model_parameters));
operations_research::RoutingSearchParameters search_parameters =
operations_research::DefaultRoutingSearchParameters();
CHECK(google::protobuf::TextFormat::MergeFromString(
absl::GetFlag(FLAGS_routing_search_parameters), &search_parameters));
if (!operations_research::LoadAndSolve(absl::GetFlag(FLAGS_pdp_file),
model_parameters, search_parameters)) {
LOG(INFO) << "Error solving " << absl::GetFlag(FLAGS_pdp_file);
}
return EXIT_SUCCESS;
}