Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/RectangularPackingItem.cs @ 14045

Last change on this file since 14045 was 14045, checked in by gkronber, 8 years ago

#1966: removed types for *PackingBin because PackingBins and PackingShapes have the same capabilities

File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Joseph Helm and 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
22
23using HeuristicLab.Problems.BinPacking.Interfaces;
24using HeuristicLab.Problems.BinPacking.Shapes;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Data;
29using HeuristicLab.Parameters;
30
31
32namespace HeuristicLab.Problems.BinPacking.PackingItem {
33  [Item("RectangularPackingItem", "Represents a rectangular packing-item for bin-packing problems.")]
34  [StorableClass]
35  public class RectangularPackingItem : RectangularPackingShape, IPackingItem {
36
37    public RectangularPackingShape TargetBin {
38      get { return ((IValueParameter<RectangularPackingShape>)Parameters["TargetBin"]).Value; }
39      set { ((IValueParameter<RectangularPackingShape>)Parameters["TargetBin"]).Value = value; }
40    }
41
42    public double Weight {
43      get { return ((IFixedValueParameter<DoubleValue>)Parameters["Weight"]).Value.Value; }
44      set { ((IFixedValueParameter<DoubleValue>)Parameters["Weight"]).Value.Value = value; }
45    }
46
47    public int Material {
48      get { return ((IFixedValueParameter<IntValue>)Parameters["Material"]).Value.Value; }
49      set { ((IFixedValueParameter<IntValue>)Parameters["Material"]).Value.Value = value; }
50    }
51
52    [StorableConstructor]
53    protected RectangularPackingItem(bool deserializing) : base(deserializing) { }
54    protected RectangularPackingItem(RectangularPackingItem original, Cloner cloner)
55      : base(original, cloner) {
56    }
57
58    public override IDeepCloneable Clone(Cloner cloner) {
59      return new RectangularPackingItem(this, cloner);
60    }
61
62    public RectangularPackingItem()
63      : base() {
64      Parameters.Add(new ValueParameter<RectangularPackingShape>("TargetBin"));
65      Parameters.Add(new FixedValueParameter<DoubleValue>("Weight"));
66      Parameters.Add(new FixedValueParameter<IntValue>("Material"));
67    }
68
69    public RectangularPackingItem(int width, int height, RectangularPackingShape targetBin)
70      : this() {
71      this.Width = width;
72      this.Height = height;
73      this.TargetBin = (RectangularPackingShape)targetBin.Clone();
74    }
75
76    public bool SupportsStacking(IPackingItem other) {
77      return ((other.Material < this.Material) || (other.Material.Equals(this.Material) && other.Weight <= this.Weight));
78    }
79  }
80}
Note: See TracBrowser for help on using the repository browser.