-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalgorithm_config.json
More file actions
48 lines (41 loc) · 1020 Bytes
/
Copy pathalgorithm_config.json
File metadata and controls
48 lines (41 loc) · 1020 Bytes
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
{
"data_dir": "data",
"output_dir": "output",
"placement": {
"strategy": "cost_matrix",
"lookahead_days": 14,
"max_concentration": 0.30,
"max_vehicles_per_location": null
},
"assignment": {
"strategy": "greedy_with_lookahead",
"assignment_lookahead_days": 14,
"look_ahead_days": 14,
"chain_depth": 10,
"chain_weight": 20.0,
"max_lookahead_routes": 200,
"use_chain_optimization": true
},
"swap_policy": {
"max_swaps_per_period": 1,
"swap_period_days": 90
},
"service_policy": {
"service_tolerance_km": 1000,
"service_duration_hours": 48,
"service_penalty_pln": 500.0,
"service_cost_pln": 2000.0
},
"costs": {
"relocation_base_cost_pln": 1000.0,
"relocation_per_km_pln": 1.0,
"relocation_per_hour_pln": 150.0,
"overage_per_km_pln": 0.92
},
"performance": {
"progress_report_days": 30,
"progress_report_interval": 1000,
"use_pathfinding": true,
"use_relation_cache": true
}
}