Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2817:

  • Added a new packer.
  • Enhanced the material types.
  • Added extreme point pruning for layer support in the extrem point creators.
  • BinPacking3D: Added a graph for calculating weigth distribution of the items.
File size: 5.8 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
63
64    public abstract void PackItemsToPackingList(IList<BinPacking3D> packingList, Permutation sortedItems, PackingShape binShape, IList<PackingItem> items, ExtremePointCreationMethod epCreationMethod, ExtremePointPruningMethod epPruningMethod, bool useStackingConstraints);
65
66    /// <summary>
67    /// Pack a given item into a given bin and updates the residual space and the extreme points
68    /// </summary>
69    /// <param name="packingBin"></param>
70    /// <param name="itemId"></param>
71    /// <param name="packingItem"></param>
72    /// <param name="position"></param>
73    protected virtual void PackItem(BinPacking3D packingBin, int itemId, PackingItem packingItem, PackingPosition position, IExtremePointCreator extremePointCreator, bool useStackingConstraints) {     
74      packingBin.PackItem(itemId, packingItem, position);
75      extremePointCreator.UpdateBinPacking(packingBin, packingItem, position);
76    }
77       
78    /// <summary>
79    /// This method tries to find a valid packing position for an given item in a given packing bin
80    /// </summary>
81    /// <param name="packingBin"></param>
82    /// <param name="packingItem"></param>
83    /// <param name="useStackingConstraints"></param>
84    /// <returns>Returns the packing position for an given item. If there could not be found a valid position it returns null</returns>
85    protected virtual PackingPosition FindPackingPositionForItem(BinPacking3D packingBin, PackingItem packingItem, bool useStackingConstraints) {
86      if (!CheckItemDimensions(packingBin, packingItem)) {
87        throw new BinPacking3DException($"The dimensions of the given item exceeds the bin dimensions. " +
88          $"Bin: ({packingBin.BinShape.Width} {packingBin.BinShape.Depth} {packingBin.BinShape.Height})" +
89          $"Item: ({packingItem.Width} {packingItem.Depth} {packingItem.Height})");
90      }
91
92      PackingItem newItem = new PackingItem(
93        packingItem.Width,
94        packingItem.Height,
95        packingItem.Depth,
96        packingItem.TargetBin, packingItem.Weight, packingItem.Layer);
97
98      // The extremepoints are sortet by Y / Z / X
99      var newPosition = packingBin.ExtremePoints.Where(x => packingBin.IsPositionFeasible(newItem, x.Key, useStackingConstraints)).FirstOrDefault();
100     
101      return newPosition.Key;
102    }
103
104    /// <summary>
105    /// Compares the dimensions of a given item and the current bin.
106    /// </summary>
107    /// <param name="item"></param>
108    /// <returns>Returns true if the dimensions of an given item are less or equal to the bin.</returns>
109    protected virtual bool CheckItemDimensions(BinPacking3D packingBin, PackingItem item) {
110      var width = item.Width;
111      var depth = item.Depth;
112      return packingBin.BinShape.Width >= width && packingBin.BinShape.Height >= item.Height && packingBin.BinShape.Depth >= depth;
113    }
114
115    /// <summary>
116    /// Clones a given list of packing items.
117    /// </summary>
118    /// <param name="items"></param>
119    /// <returns></returns>
120    protected static IList<PackingItem> CloneItems(IList<PackingItem> items) {
121      var clonedItems = new List<PackingItem>();
122      foreach (var item in items) {
123        clonedItems.Add(item.Clone() as PackingItem);
124      }
125      return clonedItems;
126    }
127   
128  }
129}
Note: See TracBrowser for help on using the repository browser.