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
#[cfg(test)]
#[path = "../../tests/unit/validation/objectives_test.rs"]
mod objectives_test;
use super::*;
use crate::format::problem::Objective::*;
use crate::utils::combine_error_results;
fn check_e1600_empty_objective(objectives: &[&Objective]) -> Result<(), FormatError> {
if objectives.is_empty() {
Err(FormatError::new(
"E1600".to_string(),
"an empty objective specified".to_string(),
"remove objectives property completely to use default".to_string(),
))
} else {
Ok(())
}
}
fn check_e1601_duplicate_objectives(objectives: &[&Objective]) -> Result<(), FormatError> {
let mut duplicates = objectives
.iter()
.fold(HashMap::new(), |mut acc, objective| {
match objective {
MinimizeCost => acc.entry("minimize-cost"),
MinimizeDistance => acc.entry("minimize-distance"),
MinimizeDuration => acc.entry("minimize-duration"),
MinimizeTours => acc.entry("minimize-tours"),
MaximizeTours => acc.entry("maximize-tours"),
MaximizeValue { .. } => acc.entry("maximize-value"),
MinimizeUnassignedJobs { .. } => acc.entry("minimize-unassigned"),
BalanceMaxLoad { .. } => acc.entry("balance-max-load"),
BalanceActivities { .. } => acc.entry("balance-activities"),
BalanceDistance { .. } => acc.entry("balance-distance"),
BalanceDuration { .. } => acc.entry("balance-duration"),
Objective::TourOrder { .. } => acc.entry("tour-order"),
}
.and_modify(|count| *count += 1)
.or_insert(1_usize);
acc
})
.iter()
.filter_map(|(name, count)| if *count > 1 { Some((*name).to_string()) } else { None })
.collect::<Vec<_>>();
duplicates.sort();
if duplicates.is_empty() {
Ok(())
} else {
Err(FormatError::new(
"E1601".to_string(),
"duplicate objective specified".to_string(),
"remove duplicate objectives".to_string(),
))
}
}
fn check_e1602_no_cost_objective(objectives: &[&Objective]) -> Result<(), FormatError> {
let no_min_cost = !objectives.iter().any(|objective| matches!(objective, MinimizeCost));
if no_min_cost {
Err(FormatError::new(
"E1602".to_string(),
"missing cost objective".to_string(),
"specify 'minimize-cost' objective".to_string(),
))
} else {
Ok(())
}
}
fn check_e1603_no_jobs_with_value_objective(
ctx: &ValidationContext,
objectives: &[&Objective],
) -> Result<(), FormatError> {
let has_value_objective = objectives.iter().any(|objective| matches!(objective, MaximizeValue { .. }));
let has_no_jobs_with_value = !ctx.problem.plan.jobs.iter().filter_map(|job| job.value).any(|value| value > 0.);
if has_value_objective && has_no_jobs_with_value {
Err(FormatError::new(
"E1603".to_string(),
"redundant value objective".to_string(),
"specify at least one non-zero valued job or delete 'maximize-value' objective".to_string(),
))
} else {
Ok(())
}
}
fn check_e1604_no_jobs_with_order_objective(
ctx: &ValidationContext,
objectives: &[&Objective],
) -> Result<(), FormatError> {
let has_order_objective = objectives.iter().any(|objective| matches!(objective, TourOrder { .. }));
let has_no_jobs_with_order =
!ctx.problem.plan.jobs.iter().flat_map(get_job_tasks).filter_map(|job| job.order).any(|value| value > 0);
if has_order_objective && has_no_jobs_with_order {
Err(FormatError::new(
"E1604".to_string(),
"redundant tour order objective".to_string(),
"specify at least one job with non-zero order or delete 'tour-order' objective".to_string(),
))
} else {
Ok(())
}
}
fn check_e1605_check_positive_value_and_order(ctx: &ValidationContext) -> Result<(), FormatError> {
let job_ids = ctx
.problem
.plan
.jobs
.iter()
.filter(|job| {
let has_invalid_order = get_job_tasks(job).filter_map(|task| task.order).any(|value| value < 1);
let has_invalid_value = job.value.map_or(false, |v| v < 1.);
has_invalid_order || has_invalid_value
})
.map(|job| job.id.as_str())
.collect::<Vec<_>>();
if job_ids.is_empty() {
Ok(())
} else {
Err(FormatError::new(
"E1605".to_string(),
"value or order of a job should be greater than zero".to_string(),
format!("change value or order of jobs to be greater than zero: '{}'", job_ids.join(", ")),
))
}
}
fn check_e1606_jobs_with_order_but_no_objective(
ctx: &ValidationContext,
objectives: &[&Objective],
) -> Result<(), FormatError> {
if objectives.is_empty() {
return Ok(());
}
let has_no_order_objective = !objectives.iter().any(|objective| matches!(objective, TourOrder { .. }));
let has_jobs_with_order =
ctx.problem.plan.jobs.iter().flat_map(get_job_tasks).filter_map(|job| job.order).any(|value| value > 0);
if has_no_order_objective && has_jobs_with_order {
Err(FormatError::new(
"E1606".to_string(),
"missing tour order objective".to_string(),
"specify 'tour-order' objective, remove objectives property or remove order property from jobs".to_string(),
))
} else {
Ok(())
}
}
fn check_e1607_jobs_with_value_but_no_objective(
ctx: &ValidationContext,
objectives: &[&Objective],
) -> Result<(), FormatError> {
if objectives.is_empty() {
return Ok(());
}
let has_no_value_objective = !objectives.iter().any(|objective| matches!(objective, MaximizeValue { .. }));
let has_jobs_with_vlue = ctx.problem.plan.jobs.iter().filter_map(|job| job.value).any(|value| value > 0.);
if has_no_value_objective && has_jobs_with_vlue {
Err(FormatError::new(
"E1607".to_string(),
"missing value objective".to_string(),
"specify 'maximize-value' objective, remove objectives property or remove value property from jobs"
.to_string(),
))
} else {
Ok(())
}
}
fn get_objectives<'a>(ctx: &'a ValidationContext) -> Option<Vec<&'a Objective>> {
ctx.problem.objectives.as_ref().map(|objectives| objectives.iter().flatten().collect())
}
pub fn validate_objectives(ctx: &ValidationContext) -> Result<(), Vec<FormatError>> {
if let Some(objectives) = get_objectives(ctx) {
combine_error_results(&[
check_e1600_empty_objective(&objectives),
check_e1601_duplicate_objectives(&objectives),
check_e1602_no_cost_objective(&objectives),
check_e1603_no_jobs_with_value_objective(ctx, &objectives),
check_e1604_no_jobs_with_order_objective(ctx, &objectives),
check_e1605_check_positive_value_and_order(ctx),
check_e1606_jobs_with_order_but_no_objective(ctx, &objectives),
check_e1607_jobs_with_value_but_no_objective(ctx, &objectives),
])
} else {
Ok(())
}
}