-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy patharguments.json
More file actions
74 lines (74 loc) · 1.71 KB
/
arguments.json
File metadata and controls
74 lines (74 loc) · 1.71 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
[
{
"parameter": "V",
"value": 4,
"description": "Number of vehicles"
},
{
"parameter": "v_cap",
"value": 4,
"description": "Capacity of vehicles"
},
{
"parameter": "I",
"value": 15,
"description": "Number of customers"
},
{
"parameter": "r",
"value": 10,
"description": "Number of miles around depot (radius) of network"
},
{
"parameter": "loc_depot",
"value": [40.943, -75.501],
"description": "Location (lat, long) of depot"
},
{
"parameter": "delta",
"value": 0.25,
"description": "Duration of service (in hours) for each customer"
},
{
"parameter": "alpha",
"value": 1,
"description": "Factor to convert distance to travel time"
},
{
"parameter": "day_start",
"value": 9,
"description": "Clock time representing the start time of a business day."
},
{
"parameter": "day_end",
"value": 17,
"description": "Clock time representing the end time of a business day."
},
{
"parameter": "demand_per_customer",
"value": 1,
"description": "Number of units of commodities to drop off at each customer."
},
{
"parameter": "max_time_window_length",
"value": 4,
"description": "Maximum number of hours that a time window may last."
},
{
"parameter": "travel_time_factor",
"value": 2,
"description": "Factor by which travel time relates to (distance / radius)"
},
{
"parameter": "time_windows",
"value": 0,
"choices": [0, 1],
"description": "Activate time-windows constraints (1) or not (0)."
},
{
"parameter": "capacity",
"value": 1,
"choices": [0, 1],
"description": "Activate vehicle capacity constraints (1) or not (0)."
}
]