#region License Information /* HeuristicLab * Copyright (C) 2002-2012 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.Common; using HeuristicLab.Core; using HeuristicLab.Encodings.PackingEncoding.MultiComponentVector; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; namespace HeuristicLab.Encodings.PackingEncoding.MultiComponentVector { [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.")] [StorableClass] public class ChangePositionMove : MultiComponentVectorMove { [Storable] public int Index { get; protected set; } [Storable] public int TargetIndex { get; protected set; } [StorableConstructor] protected ChangePositionMove(bool deserializing) : base(deserializing) { } protected ChangePositionMove(ChangePositionMove original, Cloner cloner) : base(original, cloner) { this.Index = original.Index; this.TargetIndex = original.TargetIndex; } public ChangePositionMove(int index, int targetIndex, MultiComponentVectorEncoding multiComponentVector) : base(multiComponentVector) { Index = index; TargetIndex = targetIndex; } public override IDeepCloneable Clone(Cloner cloner) { return new ChangePositionMove(this, cloner); } public override MultiComponentVectorEncoding GetVectorAfterMove() { return GetVectorAfterMove(MultiComponentVector, Index, TargetIndex); } public static MultiComponentVectorEncoding GetVectorAfterMove(MultiComponentVectorEncoding multiComponentVector, int index, int targetIndex) { var result = multiComponentVector.Clone(new Cloner()) as MultiComponentVectorEncoding; var aux = result.PackingInformations[index]; result.PackingInformations.RemoveAt(index); result.PackingInformations.Insert(targetIndex, aux); return result; } public override System.Type GetMoveAttributeType() { return typeof(ChangePositionMoveAttribute); } public override string ToString() { return "PM(i=" + Index + ",ti=" + TargetIndex + ")"; } } }