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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Text;
|
---|
26 | using HeuristicLab.Problems.BinPacking.Interfaces;
|
---|
27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 | using HeuristicLab.Core;
|
---|
29 | using HeuristicLab.Common;
|
---|
30 |
|
---|
31 | namespace 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 | }
|
---|