#region License Information /* HeuristicLab * Copyright (C) 2002-2015 Joseph Helm and Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using HeuristicLab.Problems.BinPacking.Interfaces; using HeuristicLab.Problems.BinPacking.Shapes; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Problems.BinPacking.PackingBin; namespace HeuristicLab.Problems.BinPacking.PackingItem { [Item("RectangularPackingItem", "Represents a rectangular packing-item for bin-packing problems.")] [StorableClass] public class RectangularPackingItem : RectangularPackingShape, IPackingItem { public RectangularPackingBin TargetBin { get; set; } public double Weight { get; set; } public int Material { get; set; } public bool SupportsStacking(IPackingItem other) { return ((other.Material < this.Material) || (other.Material.Equals(this.Material) && other.Weight <= this.Weight)); } [StorableConstructor] protected RectangularPackingItem(bool deserializing) : base(deserializing) { } protected RectangularPackingItem(RectangularPackingItem original, Cloner cloner) : base(original, cloner) { this.Weight = original.Weight; this.Material = original.Material; } public override IDeepCloneable Clone(Cloner cloner) { return new RectangularPackingItem(this, cloner); } public RectangularPackingItem() : base() { } public RectangularPackingItem(int width, int height, RectangularPackingBin targetBin) : base(width, height) { this.TargetBin = new RectangularPackingBin(targetBin.Width, targetBin.Height); } public void AddTargetBinMeasures(int[] targetBinMeasures) { TargetBin = new RectangularPackingBin(targetBinMeasures[0], targetBinMeasures[1]); } } }