vrpRouting  0.3
optimize_driver.h
Go to the documentation of this file.
1 /*PGR-GNU*****************************************************************
2 File: pickDeliver_driver.h
3 
4 Copyright (c) 2015 pgRouting developers
6 
7 Function's developer:
8 Copyright (c) 2015 Celia Virginia Vergara Castillo
9 Mail:
10 
11 ------
12 
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17 
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22 
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 
27  ********************************************************************PGR-GNU*/
28 
31 #ifndef INCLUDE_DRIVERS_OPTIMIZE_DRIVER_H_
32 #define INCLUDE_DRIVERS_OPTIMIZE_DRIVER_H_
33 #pragma once
34 
35 #include "c_types/typedefs.h"
36 
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
42  void do_optimize(
43  PickDeliveryOrders_t customers_arr[], size_t,
44  Vehicle_t *vehicles_arr, size_t,
45  Matrix_cell_t *, size_t,
46  Time_multipliers_t *, size_t,
47 
48  double,
49  int,
50  int64_t,
51 
52  bool, bool, bool,
53 
55  size_t*,
56 
57  char**,
58  char**,
59  char**);
60 
61 
62 #ifdef __cplusplus
63 }
64 #endif
65 
66 #endif // INCLUDE_DRIVERS_OPTIMIZE_DRIVER_H_
PickDeliveryOrders_t
order's attributes
Definition: pickDeliveryOrders_t.h:56
Time_multipliers_t
Time Dependant Multipliers.
Definition: time_multipliers_t.h:46
Vehicle_t
vehicles's attributes
Definition: vehicle_t.h:50
do_optimize
void do_optimize(PickDeliveryOrders_t customers_arr[], size_t, Vehicle_t *vehicles_arr, size_t, Matrix_cell_t *, size_t, Time_multipliers_t *, size_t, double, int, int64_t, bool, bool, bool, Short_vehicle_rt **, size_t *, char **, char **, char **)
Driver for processing a pickupDeliver problem.
typedefs.h
Short_vehicle_rt
short_vehicle
Definition: short_vehicle_rt.h:40
Matrix_cell_t
traveling costs
Definition: matrix_cell_t.h:41