Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Dimensions/PackingDimensions.cs @ 11890

Last change on this file since 11890 was 9440, checked in by jhelm, 12 years ago

#1966: Implemented new encoding (MultiComponentVector/MCV); Implemented move-operators for MCV and GV encodings; Implemented new decoding-methods for PS, GV and MCV encodings (ExtremePoint-based packing);

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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 System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Problems.BinPacking.Interfaces;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using HeuristicLab.Core;
29using HeuristicLab.Common;
30
31namespace HeuristicLab.Problems.BinPacking.Dimensions {
32  [Item("Packing Dimensions", "Represents an abstract packing-position associated with a packing-problem.")]
33  [StorableClass]
34  public abstract class PackingDimensions : Item, IPackingDimensions {
35    /// <summary>
36    /// The number of the bin to which the current item is assigned is stored in this variable. Counting starts at 0 !!!
37    /// </summary>
38    public Int32 AssignedBin { get; set; }
39    /// <summary>
40    /// Determins if the positioned item is to be rotate by 90 degrees or not.
41    /// </summary>
42    public Boolean Rotated { get; set; }
43
44    [StorableConstructor]
45    protected PackingDimensions(bool deserializing) : base(deserializing) { }
46    protected PackingDimensions(PackingDimensions original, Cloner cloner)
47      : base(original, cloner) {
48        AssignedBin = original.AssignedBin;
49        Rotated = original.Rotated;
50    }
51
52    public PackingDimensions(Int32 assignedBin, Boolean rotated) {
53      this.AssignedBin = assignedBin;
54      this.Rotated = rotated;
55    }
56
57    public override string ToString() {
58      StringBuilder sb = new StringBuilder();
59      sb.Append("[");
60      sb.Append(AssignedBin + "-");
61      sb.Append(Rotated);
62      sb.Append("]");
63      return sb.ToString();
64    }
65
66    public override bool Equals(object obj) {
67      var pd = obj as PackingDimensions;
68      if (pd != null)
69        return (pd.AssignedBin == this.AssignedBin && pd.Rotated == this.Rotated);
70      else return false;
71    }
72
73    public override int GetHashCode() {
74      return 31 * AssignedBin * (Rotated ? 3 : 7);
75    }
76  }
77}
Note: See TracBrowser for help on using the repository browser.