vrpRouting  0.3
vroom_shipment_t.h
Go to the documentation of this file.
1 /*PGR-GNU*****************************************************************
2 File: vroom_shipment_t.h
3 
4 Copyright (c) 2021 pgRouting developers
6 
7 Function's developer:
8 Copyright (c) 2021 Ashish Kumar
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*/
30 #ifndef INCLUDE_C_TYPES_VROOM_VROOM_SHIPMENT_T_H_
31 #define INCLUDE_C_TYPES_VROOM_VROOM_SHIPMENT_T_H_
32 #pragma once
33 
34 #include "c_types/typedefs.h"
35 
57  Idx id;
70  size_t amount_size;
73  size_t skills_size;
77  char *p_data;
78  char *d_data;
79 };
80 
81 #endif // INCLUDE_C_TYPES_VROOM_VROOM_SHIPMENT_T_H_
Vroom_shipment_t::priority
Priority priority
Number of skills.
Definition: vroom_shipment_t.h:75
Vroom_shipment_t::p_service
Duration p_service
Pickup setup time.
Definition: vroom_shipment_t.h:62
Vroom_shipment_t::d_setup
Duration d_setup
Delivery location index in matrix.
Definition: vroom_shipment_t.h:66
Vroom_shipment_t::amount_size
size_t amount_size
Quantities for shipment.
Definition: vroom_shipment_t.h:70
Skill
uint32_t Skill
Definition: typedefs.h:85
Vroom_shipment_t::d_data
char * d_data
Metadata information of pickup shipment.
Definition: vroom_shipment_t.h:78
Vroom_shipment_t::p_location_id
MatrixIndex p_location_id
Shipment identifier.
Definition: vroom_shipment_t.h:60
Vroom_shipment_t::skills
Skill * skills
Number of quantities.
Definition: vroom_shipment_t.h:72
typedefs.h
Vroom_shipment_t
Vehicles's attributes.
Definition: vroom_shipment_t.h:56
Vroom_shipment_t::d_service
Duration d_service
Delivery setup time.
Definition: vroom_shipment_t.h:67
Vroom_shipment_t::p_setup
Duration p_setup
Pickup location index in matrix.
Definition: vroom_shipment_t.h:61
Vroom_shipment_t::p_data
char * p_data
Priority level of shipment.
Definition: vroom_shipment_t.h:77
Amount
int64_t Amount
Definition: typedefs.h:74
Idx
uint64_t Idx
Definition: typedefs.h:79
MatrixIndex
int64_t MatrixIndex
Definition: typedefs.h:80
Vroom_shipment_t::amount
Amount * amount
Delivery service time.
Definition: vroom_shipment_t.h:69
Duration
uint32_t Duration
Definition: typedefs.h:81
Vroom_shipment_t::skills_size
size_t skills_size
Mandatory skills.
Definition: vroom_shipment_t.h:73
Vroom_shipment_t::d_location_id
MatrixIndex d_location_id
Pickup service time.
Definition: vroom_shipment_t.h:65
Priority
uint32_t Priority
Definition: typedefs.h:83
Vroom_shipment_t::id
Idx id
Definition: vroom_shipment_t.h:57