Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Dimensions/TwoDimensionalPacking.cs @ 9440

Last change on this file since 9440 was 9440, checked in by jhelm, 11 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("Two Dimensional Packing", "Represents a packing-position associated with a two dimensional packing-problem.")]
33  [StorableClass]
34  public class TwoDimensionalPacking : PackingDimensions {
35    public int X { get; set; }
36    public int Y { get; set; }
37
38    [StorableConstructor]
39    protected TwoDimensionalPacking(bool deserializing) : base(deserializing) { }
40    protected TwoDimensionalPacking(TwoDimensionalPacking original, Cloner cloner)
41      : base(original, cloner) {
42        X = original.X;
43        Y = original.Y;
44    }
45    public override IDeepCloneable Clone(Cloner cloner) {
46      return new TwoDimensionalPacking(this, cloner);
47    }
48
49    public TwoDimensionalPacking(int assignedBin, int x, int y) : this(assignedBin, x, y, false) { }
50    public TwoDimensionalPacking(int assignedBin, int x, int y, bool rotated)
51      : base(assignedBin, rotated) {
52      this.X = x;
53      this.Y = y;
54    }
55    public override string ToString() {
56      StringBuilder sb = new StringBuilder();
57      sb.Append("[");
58      sb.Append("AssignedBin: ");
59      sb.Append(AssignedBin);
60      sb.Append("; (");
61      sb.Append(X + ",");
62      sb.Append(Y);
63      sb.Append(")");
64      sb.Append("]");
65      return sb.ToString();
66    }
67
68
69    public override bool Equals(object obj) {
70      var tdp = obj as TwoDimensionalPacking;
71      if (tdp != null)
72        return (tdp.X == this.X && tdp.Y == this.Y);
73      else return false;
74    }
75
76    public override int GetHashCode() {
77      return base.GetHashCode() + 13 * X + 17 * Y;
78    }
79  }
80}
Note: See TracBrowser for help on using the repository browser.