Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Packer/BinPacker.cs @ 15617

Last change on this file since 15617 was 15617, checked in by rhanghof, 6 years ago

#2817:

  • The items can be rotated and tilted now.
  • Added pruning of extreme points in packed bins.
  • Added new packer which packs items by positioning them on the point with the minimum of wasted space. He uses rotating and tilting of items.
  • Added classes for sorting given items.
File size: 5.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Encodings.PermutationEncoding;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26using HeuristicLab.Problems.BinPacking3D;
27using HeuristicLab.Problems.BinPacking3D.ExtremePointCreation;
28using System;
29using System.Collections.Generic;
30using System.Linq;
31using System.Text;
32using System.Threading.Tasks;
33
34namespace HeuristicLab.Problems.BinPacking3D.Packer {
35  internal abstract class BinPacker : Item, IBinPacker {
36   
37    #region Constructors for HEAL
38
39   
40    [StorableConstructor]
41    protected BinPacker(bool deserializing) : base(deserializing) { }
42
43    protected BinPacker(BinPacker original, Cloner cloner)
44      : base(original, cloner) {
45    }
46
47    #endregion
48
49    public BinPacker() { }
50
51   
52    /// <summary>
53    /// Packs all items of the bin packer and returns a collection of BinPacking3D objects
54    /// </summary>
55    /// <param name="sortedItems">Permutation of items sorted by a sorting method. The value of each permutation index references to the index of the items list</param>
56    /// <param name="binShape">Bin for storing the items</param>
57    /// <param name="items">A list of packing items which should be assigned to a bin</param>
58    /// <param name="useStackingConstraints">Flag for using stacking constraints</param>
59    /// <returns>Returns a collection of bin packing 3d objects. Each object represents a bin and the packed items</returns>
60    public abstract IList<BinPacking3D> PackItems(Permutation sortedItems, PackingShape binShape, IList<PackingItem> items, ExtremePointCreationMethod epCreationMethod, ExtremePointPruningMethod epPruningMethod, bool useStackingConstraints);
61   
62    /// <summary>
63    /// Pack a given item into a given bin and updates the residual space and the extreme points
64    /// </summary>
65    /// <param name="packingBin"></param>
66    /// <param name="itemId"></param>
67    /// <param name="packingItem"></param>
68    /// <param name="position"></param>
69    protected virtual void PackItem(BinPacking3D packingBin, int itemId, PackingItem packingItem, PackingPosition position, IExtremePointCreator extremePointCreator, bool useStackingConstraints) {     
70      packingBin.PackItem(itemId, packingItem, position);
71      extremePointCreator.UpdateBinPacking(packingBin, packingItem, position);
72    }
73       
74    /// <summary>
75    /// This method tries to find a valid packing position for an given item in a given packing bin
76    /// </summary>
77    /// <param name="packingBin"></param>
78    /// <param name="packingItem"></param>
79    /// <param name="useStackingConstraints"></param>
80    /// <returns>Returns the packing position for an given item. If there could not be found a valid position it returns null</returns>
81    protected virtual PackingPosition FindPackingPositionForItem(BinPacking3D packingBin, PackingItem packingItem, bool useStackingConstraints) {
82      if (!CheckItemDimensions(packingBin, packingItem)) {
83        throw new BinPacking3DException($"The dimensions of the given item exceeds the bin dimensions. " +
84          $"Bin: ({packingBin.BinShape.Width} {packingBin.BinShape.Depth} {packingBin.BinShape.Height})" +
85          $"Item: ({packingItem.Width} {packingItem.Depth} {packingItem.Height})");
86      }
87
88      PackingItem newItem = new PackingItem(
89        packingItem.Width,
90        packingItem.Height,
91        packingItem.Depth,
92        packingItem.TargetBin, packingItem.Weight, packingItem.Material);
93
94      // The extremepoints are sortet by Y / Z / X
95      var newPosition = packingBin.ExtremePoints.Where(x => packingBin.IsPositionFeasible(newItem, x.Key, useStackingConstraints)).FirstOrDefault();
96     
97      return newPosition.Key;
98    }
99
100    /// <summary>
101    /// Compares the dimensions of a given item and the current bin.
102    /// </summary>
103    /// <param name="item"></param>
104    /// <returns>Returns true if the dimensions of an given item are less or equal to the bin.</returns>
105    protected virtual bool CheckItemDimensions(BinPacking3D packingBin, PackingItem item) {
106      var width = item.Width;
107      var depth = item.Depth;
108      return packingBin.BinShape.Width >= width && packingBin.BinShape.Height >= item.Height && packingBin.BinShape.Depth >= depth;
109    }
110
111    /// <summary>
112    /// Clones a given list of packing items.
113    /// </summary>
114    /// <param name="items"></param>
115    /// <returns></returns>
116    protected static IList<PackingItem> CloneItems(IList<PackingItem> items) {
117      var clonedItems = new List<PackingItem>();
118      foreach (var item in items) {
119        clonedItems.Add(item.Clone() as PackingItem);
120      }
121      return clonedItems;
122    }
123
124  }
125}
Note: See TracBrowser for help on using the repository browser.