jagua_rs/entities/problems/
bin_packing.rs

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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
use itertools::Itertools;

use crate::entities::instances::bin_packing::BPInstance;
use crate::entities::instances::instance_generic::InstanceGeneric;
use crate::entities::layout::Layout;
use crate::entities::placed_item::PItemKey;
use crate::entities::placing_option::PlacingOption;
use crate::entities::problems::problem_generic::private::ProblemGenericPrivate;
use crate::entities::problems::problem_generic::{LayoutIndex, ProblemGeneric};
use crate::entities::solution::Solution;
use crate::util::assertions;

/// Bin Packing Problem
#[derive(Clone)]
pub struct BPProblem {
    pub instance: BPInstance,
    pub layouts: Vec<Layout>,
    template_layouts: Vec<Layout>,
    missing_item_qtys: Vec<isize>,
    bin_qtys: Vec<usize>,
    layout_id_counter: usize,
    solution_id_counter: usize,
    unmodified_layout_ids: Vec<usize>,
    unmodified_layouts_ref_solution: Option<usize>,
    uncommitted_removed_layouts: Vec<Layout>,
}

impl BPProblem {
    pub fn new(instance: BPInstance) -> Self {
        let missing_item_qtys = instance
            .items
            .iter()
            .map(|(_, qty)| *qty as isize)
            .collect_vec();
        let bin_qtys = instance.bins.iter().map(|(_, qty)| *qty).collect_vec();
        let layouts = vec![];
        let template_layouts = instance
            .bins
            .iter()
            .enumerate()
            .map(|(i, (bin, _))| Layout::new(i, bin.clone()))
            .collect_vec();
        let layout_id_counter = template_layouts.len();
        let unchanged_layouts = vec![];
        let unchanged_layouts_solution_id = None;
        let uncommitted_removed_layouts = vec![];

        Self {
            instance,
            layouts,
            template_layouts,
            missing_item_qtys,
            bin_qtys,
            layout_id_counter,
            solution_id_counter: 0,
            unmodified_layout_ids: unchanged_layouts,
            unmodified_layouts_ref_solution: unchanged_layouts_solution_id,
            uncommitted_removed_layouts,
        }
    }

    pub fn remove_layout(&mut self, layout_index: LayoutIndex) {
        self.deregister_layout(layout_index);
    }

    pub fn register_layout(&mut self, layout: Layout) -> LayoutIndex {
        self.register_bin(layout.bin.id);
        layout
            .placed_items()
            .values()
            .for_each(|pi| self.register_included_item(pi.item_id));
        self.layouts.push(layout);
        LayoutIndex::Real(self.layouts.len() - 1)
    }

    pub fn deregister_layout(&mut self, layout_index: LayoutIndex) {
        match layout_index {
            LayoutIndex::Real(i) => {
                let layout = self.layouts.remove(i);
                self.layout_has_changed(layout.id());
                self.deregister_bin(layout.bin.id);
                layout
                    .placed_items()
                    .values()
                    .for_each(|pi| self.deregister_included_item(pi.item_id));
                self.uncommitted_removed_layouts.push(layout);
            }
            LayoutIndex::Template(_) => unreachable!("cannot remove template layout"),
        }
    }

    fn reset_unmodified_layouts(&mut self, ref_solution_id: usize) {
        self.unmodified_layout_ids = self.layouts.iter().map(|l| l.id()).collect();
        self.unmodified_layouts_ref_solution = Some(ref_solution_id);
    }

    fn register_bin(&mut self, bin_id: usize) {
        assert!(self.bin_qtys[bin_id] > 0);
        self.bin_qtys[bin_id] -= 1
    }

    fn deregister_bin(&mut self, bin_id: usize) {
        self.bin_qtys[bin_id] += 1
    }

    fn layout_has_changed(&mut self, l_id: usize) {
        let index = self.unmodified_layout_ids.iter().position(|v| *v == l_id);
        if let Some(index) = index {
            self.unmodified_layout_ids.remove(index);
        }
    }
}

impl ProblemGeneric for BPProblem {
    fn place_item(&mut self, p_opt: PlacingOption) -> (LayoutIndex, PItemKey) {
        let layout_index = match &p_opt.layout_idx {
            LayoutIndex::Real(i) => LayoutIndex::Real(*i),
            LayoutIndex::Template(i) => {
                //Layout is empty, clone it and add it to `layouts`
                let next_layout_id = self.next_layout_id();
                let template = &self.template_layouts[*i];
                let copy = template.clone_with_id(next_layout_id);
                self.register_layout(copy)
            }
        };
        let layout = match layout_index {
            LayoutIndex::Real(i) => &mut self.layouts[i],
            LayoutIndex::Template(_) => unreachable!("cannot place item in template layout"),
        };
        let item = self.instance.item(p_opt.item_id);
        let pik = layout.place_item(item, p_opt.d_transf);
        let layout_id = layout.id();

        self.register_included_item(p_opt.item_id);
        self.layout_has_changed(layout_id);

        (layout_index, pik)
    }

    fn remove_item(
        &mut self,
        layout_index: LayoutIndex,
        pik: PItemKey,
        commit_instantly: bool,
    ) -> PlacingOption {
        match layout_index {
            LayoutIndex::Real(i) => {
                self.layout_has_changed(self.layouts[i].id());
                let layout = &mut self.layouts[i];
                let pi = layout.remove_item(pik, commit_instantly);
                if layout.is_empty() {
                    //if layout is empty, remove it
                    self.deregister_layout(layout_index);
                }
                self.deregister_included_item(pi.item_id);
                PlacingOption::from_placed_item(layout_index, &pi)
            }
            LayoutIndex::Template(_) => panic!("cannot remove item from template layout"),
        }
    }

    fn create_solution(&mut self, old_solution: Option<&Solution>) -> Solution {
        let id = self.next_solution_id();
        let included_item_qtys = self.placed_item_qtys().collect_vec();
        let bin_qtys = self.bin_qtys().to_vec();
        let layout_snapshots = match old_solution {
            Some(old_solution) => {
                assert_eq!(
                    old_solution.id,
                    self.unmodified_layouts_ref_solution.unwrap()
                );
                self.layouts
                    .iter_mut()
                    .map(|l| {
                        match self.unmodified_layout_ids.contains(&l.id()) {
                            //layout is unchanged with respect to the solution, clone the snapshot from the solution
                            true => old_solution
                                .layout_snapshots
                                .iter()
                                .find(|sl| sl.id == l.id())
                                .unwrap()
                                .clone(),
                            //layout was changed, create a new snapshot
                            false => l.create_snapshot(),
                        }
                    })
                    .collect()
            }
            None => self
                .layouts
                .iter_mut()
                .map(|l| l.create_snapshot())
                .collect(),
        };

        let target_item_qtys = self
            .instance
            .items()
            .iter()
            .map(|(_, qty)| *qty)
            .collect_vec();

        let solution = Solution::new(
            id,
            layout_snapshots,
            self.usage(),
            included_item_qtys,
            target_item_qtys,
            bin_qtys,
        );
        debug_assert!(assertions::problem_matches_solution(self, &solution));

        self.reset_unmodified_layouts(solution.id);

        solution
    }

    fn restore_to_solution(&mut self, solution: &Solution) {
        match Some(solution.id) == self.unmodified_layouts_ref_solution {
            false => {
                //partial restore is impossible, rebuild everything from scratch
                self.layouts.clear();
                for sl in solution.layout_snapshots.iter() {
                    let layout = Layout::from_snapshot(sl);
                    self.layouts.push(layout);
                }
            }
            true => {
                //id of solution matches the id of the solution on which unchanged_layouts is based
                //incremental restore is possible.
                let mut ids_in_prob_in_sol = vec![];
                let mut ids_in_prob_not_sol = vec![];
                //For all current layouts, check whether they occur in the solution
                for layout in self.layouts.iter_mut() {
                    match solution
                        .layout_snapshots
                        .iter()
                        .position(|sl| sl.id == layout.id())
                    {
                        None => ids_in_prob_not_sol.push(layout.id()),
                        Some(i) => {
                            //occurs in both, restore if modified, otherwise leave it as is
                            if !self.unmodified_layout_ids.contains(&layout.id()) {
                                layout.restore(&solution.layout_snapshots[i]);
                            }
                            ids_in_prob_in_sol.push(layout.id());
                        }
                    }
                }
                //Remove all layouts not present in the solution
                ids_in_prob_not_sol.iter().for_each(|id| {
                    self.layouts.retain(|l| l.id() != *id);
                });

                //Sort the layout ids so we can use binary search
                ids_in_prob_in_sol.sort();

                //Some layouts are present in the solution, but not in the problem
                for sl in solution.layout_snapshots.iter() {
                    match ids_in_prob_in_sol.binary_search(&sl.id) {
                        Ok(_) => (), //Already present
                        Err(_) => match self
                            .uncommitted_removed_layouts
                            .iter()
                            .position(|l| l.id() == sl.id)
                        {
                            Some(i) => {
                                //Not present in problem, but still present in uncommitted_removed_layouts
                                //Restore it from there
                                let mut layout = self.uncommitted_removed_layouts.swap_remove(i);
                                layout.restore(sl);
                                self.layouts.push(layout);
                            }
                            None => {
                                //Rebuild from scratch
                                let layout = Layout::from_snapshot(sl);
                                self.layouts.push(layout);
                            }
                        },
                    }
                }
            }
        }

        //Restore missing item quantities to the state of the solution
        self.missing_item_qtys
            .iter_mut()
            .enumerate()
            .for_each(|(i, missing_qty)| {
                *missing_qty = (self.instance.item_qty(i) - solution.placed_item_qtys[i]) as isize
            });

        self.bin_qtys.clone_from_slice(&solution.bin_qtys);

        self.uncommitted_removed_layouts.clear();
        self.reset_unmodified_layouts(solution.id);

        debug_assert!(assertions::problem_matches_solution(self, solution));
    }

    fn layouts(&self) -> &[Layout] {
        &self.layouts
    }

    fn layouts_mut(&mut self) -> &mut [Layout] {
        &mut self.layouts
    }

    fn template_layouts(&self) -> &[Layout] {
        &self.template_layouts
    }

    fn missing_item_qtys(&self) -> &[isize] {
        &self.missing_item_qtys
    }

    fn bin_qtys(&self) -> &[usize] {
        &self.bin_qtys
    }

    fn instance(&self) -> &dyn InstanceGeneric {
        &self.instance
    }
}

impl ProblemGenericPrivate for BPProblem {
    fn next_solution_id(&mut self) -> usize {
        self.solution_id_counter += 1;
        self.solution_id_counter
    }

    fn next_layout_id(&mut self) -> usize {
        self.layout_id_counter += 1;
        self.layout_id_counter
    }

    fn missing_item_qtys_mut(&mut self) -> &mut [isize] {
        &mut self.missing_item_qtys
    }
}