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 HeuristicLab.Common;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Encodings.PackingEncoding.MultiComponentVector;
|
---|
25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
26 | using HeuristicLab.Problems.BinPacking.Interfaces;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Encodings.PackingEncoding.MultiComponentVector {
|
---|
29 | [Item("ChangePositionMove", "A move on a multi component vector that is specified by two indexes. The packing informations at the first index is inserted at the second one.")]
|
---|
30 | [StorableClass]
|
---|
31 | public class ChangePositionMove : MultiComponentVectorMove {
|
---|
32 | [Storable]
|
---|
33 | public int AffectedGroup { get; protected set; }
|
---|
34 | [Storable]
|
---|
35 | public int Index { get; protected set; }
|
---|
36 | [Storable]
|
---|
37 | public int TargetIndex { get; protected set; }
|
---|
38 |
|
---|
39 | [StorableConstructor]
|
---|
40 | protected ChangePositionMove(bool deserializing) : base(deserializing) { }
|
---|
41 | protected ChangePositionMove(ChangePositionMove original, Cloner cloner)
|
---|
42 | : base(original, cloner) {
|
---|
43 | this.AffectedGroup = original.AffectedGroup;
|
---|
44 | this.Index = original.Index;
|
---|
45 | this.TargetIndex = original.TargetIndex;
|
---|
46 | }
|
---|
47 | public ChangePositionMove(int affectedBin, int index, int targetIndex, MultiComponentVectorEncoding multiComponentVector)
|
---|
48 | : base(multiComponentVector) {
|
---|
49 | AffectedGroup = affectedBin;
|
---|
50 | Index = index;
|
---|
51 | TargetIndex = targetIndex;
|
---|
52 | }
|
---|
53 |
|
---|
54 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
55 | return new ChangePositionMove(this, cloner);
|
---|
56 | }
|
---|
57 |
|
---|
58 | public override IPackingSolutionEncoding GetSolutionAfterMove() {
|
---|
59 | return GetVectorAfterMove(MultiComponentVector, AffectedGroup, Index, TargetIndex);
|
---|
60 | }
|
---|
61 | public static MultiComponentVectorEncoding GetVectorAfterMove(MultiComponentVectorEncoding multiComponentVector, int affectedBin, int index, int targetIndex) {
|
---|
62 | var result = multiComponentVector.Clone(new Cloner()) as MultiComponentVectorEncoding;
|
---|
63 | var aux = result.PackingInformations[affectedBin][index];
|
---|
64 | result.PackingInformations[affectedBin].Remove(aux);
|
---|
65 | result.PackingInformations[affectedBin].Insert(targetIndex, aux);
|
---|
66 | return result;
|
---|
67 | }
|
---|
68 |
|
---|
69 | public override System.Type GetMoveAttributeType() {
|
---|
70 | return typeof(ChangePositionMoveAttribute);
|
---|
71 | }
|
---|
72 |
|
---|
73 | public override string ToString() {
|
---|
74 | return "PM(g=" + AffectedGroup + ",i=" + Index + ",ti=" + TargetIndex + ")";
|
---|
75 | }
|
---|
76 |
|
---|
77 | public override MultiComponentVectorMoveAttribute GetAttribute(double quality) {
|
---|
78 | return new ChangePositionMoveAttribute(AffectedGroup, Index,
|
---|
79 | MultiComponentVector.PackingInformations[AffectedGroup][Index].ItemID,
|
---|
80 | TargetIndex, quality);
|
---|
81 | }
|
---|
82 |
|
---|
83 | public override bool BelongsToAttribute(MultiComponentVectorMoveAttribute attribute, bool hardCriterion) {
|
---|
84 | ChangePositionMoveAttribute actualAttribute = attribute as ChangePositionMoveAttribute;
|
---|
85 | if (actualAttribute != null) {
|
---|
86 | if (hardCriterion) {
|
---|
87 | if (Index == actualAttribute.Index
|
---|
88 | || TargetIndex == actualAttribute.TargetIndex
|
---|
89 | || MultiComponentVector.PackingInformations[AffectedGroup][Index].ItemID == actualAttribute.ItemID)
|
---|
90 | return true;
|
---|
91 | } else {
|
---|
92 | if (Index == actualAttribute.Index
|
---|
93 | && TargetIndex == actualAttribute.TargetIndex
|
---|
94 | && MultiComponentVector.PackingInformations[AffectedGroup][Index].ItemID == actualAttribute.ItemID)
|
---|
95 | return true;
|
---|
96 | }
|
---|
97 | }
|
---|
98 |
|
---|
99 | return false;
|
---|
100 | }
|
---|
101 | }
|
---|
102 | } |
---|