#region License Information
/* HeuristicLab
* Copyright (C) 2002-2015 Joseph Helm and 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.PermutationEncoding;
using HeuristicLab.Operators;
using HeuristicLab.Optimization;
using HeuristicLab.Parameters;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
using HeuristicLab.Problems.BinPacking;
namespace HeuristicLab.Encodings.PackingEncoding.PackingSequence {
[Item("Insertion Move Generator", "Base class for all Swap Sequence move generators.")]
[StorableClass]
public abstract class InsertionMoveGenerator : SingleSuccessorOperator, IPackingSequenceMoveOperator, IMoveGenerator {
public override bool CanChangeName {
get { return false; }
}
public ILookupParameter PackingSequenceParameter {
get { return (ILookupParameter)Parameters["PackingSequence"]; }
}
public ILookupParameter> PackingMoveParameter {
get { return (LookupParameter>)Parameters["PackingMove"]; }
}
protected ScopeParameter CurrentScopeParameter {
get { return (ScopeParameter)Parameters["CurrentScope"]; }
}
[StorableConstructor]
protected InsertionMoveGenerator(bool deserializing) : base(deserializing) { }
protected InsertionMoveGenerator(InsertionMoveGenerator original, Cloner cloner) : base(original, cloner) { }
public InsertionMoveGenerator()
: base() {
Parameters.Add(new LookupParameter("PackingSequence", "The Sequence vector for which moves should be generated."));
Parameters.Add(new LookupParameter>("PackingMove", "The moves that should be generated in subscopes."));
Parameters.Add(new ScopeParameter("CurrentScope", "The current scope where the moves should be added as subscopes."));
}
public override IOperation Apply() {
Permutation ps = PackingSequenceParameter.ActualValue;
InsertionMove[] moves = GenerateMoves(ps);
Scope[] moveScopes = new Scope[moves.Length];
for (int i = 0; i < moveScopes.Length; i++) {
moveScopes[i] = new Scope(i.ToString());
moveScopes[i].Variables.Add(new Variable(PackingMoveParameter.ActualName, moves[i]));
}
CurrentScopeParameter.ActualValue.SubScopes.AddRange(moveScopes);
return base.Apply();
}
protected abstract InsertionMove[] GenerateMoves(Permutation packingSequence);
}
}