#region License Information
/* HeuristicLab
* Copyright (C) 2002-2019 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.Operators;
using HeuristicLab.Optimization;
using HeuristicLab.Parameters;
using HEAL.Attic;
namespace HeuristicLab.Encodings.LinearLinkageEncoding {
[Item("EMSSMoveGenerator", "Base class for all EMSS move generators (extract, merge, shift, and split).")]
[StorableType("471A0A7B-30DD-4B29-97EE-9B3F7FAED582")]
public abstract class EMSSMoveGenerator : SingleSuccessorOperator, ILinearLinkageEMSSMoveOperator, IMoveGenerator {
public override bool CanChangeName {
get { return false; }
}
public ILookupParameter LLEParameter {
get { return (ILookupParameter)Parameters["LLE"]; }
}
public ILookupParameter EMSSMoveParameter {
get { return (LookupParameter)Parameters["EMSSMove"]; }
}
[StorableConstructor]
protected EMSSMoveGenerator(StorableConstructorFlag _) : base(_) { }
protected EMSSMoveGenerator(EMSSMoveGenerator original, Cloner cloner) : base(original, cloner) { }
public EMSSMoveGenerator()
: base() {
Parameters.Add(new LookupParameter("LLE", "The LLE solution for which moves should be generated."));
Parameters.Add(new LookupParameter("EMSSMove", "The moves that should be generated in subscopes."));
}
public override IOperation Apply() {
var lle = LLEParameter.ActualValue;
var moves = GenerateMoves(lle);
var moveScopes = new Scope[moves.Length];
for (var i = 0; i < moveScopes.Length; i++) {
moveScopes[i] = new Scope(i.ToString());
moveScopes[i].Variables.Add(new Variable(EMSSMoveParameter.ActualName, moves[i]));
}
ExecutionContext.Scope.SubScopes.AddRange(moveScopes);
return base.Apply();
}
protected abstract EMSSMove[] GenerateMoves(LinearLinkage lle);
}
}