#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.Data; using HeuristicLab.Operators; using HeuristicLab.Optimization; using HeuristicLab.Parameters; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; using HeuristicLab.Problems.BinPacking; namespace HeuristicLab.Encodings.PackingEncoding.GroupingVector { [Item("Grouping Move Maker", "Peforms a grouping move on a given grouping vector and updates the quality.")] [StorableClass] public class GroupingMoveMaker : SingleSuccessorOperator, IMoveMaker, IGroupingVectorMoveOperator { public override bool CanChangeName { get { return false; } } public ILookupParameter QualityParameter { get { return (ILookupParameter)Parameters["Quality"]; } } public ILookupParameter MoveQualityParameter { get { return (ILookupParameter)Parameters["MoveQuality"]; } } public ILookupParameter PackingMoveParameter { get { return (ILookupParameter)Parameters["PackingMove"]; } } public ILookupParameter GroupingVectorParameter { get { return (ILookupParameter)Parameters["GroupingVector"]; } } public ILookupParameter PackingPlanParameter { get { return (ILookupParameter)Parameters["PackingPlan"]; } } public ILookupParameter PackingPlanAfterMoveParameter { get { return (ILookupParameter)Parameters["PackingPlanAfterMove"]; } } [StorableConstructor] protected GroupingMoveMaker(bool deserializing) : base(deserializing) { } protected GroupingMoveMaker(GroupingMoveMaker original, Cloner cloner) : base(original, cloner) { } public GroupingMoveMaker() : base() { Parameters.Add(new LookupParameter("Quality", "The quality of the solution.")); Parameters.Add(new LookupParameter("PackingMove", "The move to evaluate.")); Parameters.Add(new LookupParameter("MoveQuality", "The relative quality of the move.")); Parameters.Add(new LookupParameter("GroupingVector", "The solution as grouping vector.")); Parameters.Add(new LookupParameter("PackingPlan", "The currently best performing, decoded bin-packing solution represented as generalized packing-plan.")); Parameters.Add(new LookupParameter("PackingPlanAfterMove", "The moved and decoded bin-packing solution represented as generalized packing-plan.")); } public override IDeepCloneable Clone(Cloner cloner) { return new GroupingMoveMaker(this, cloner); } public override IOperation Apply() { IPackingMove move = PackingMoveParameter.ActualValue; GroupingVectorEncoding groupingVector = GroupingVectorParameter.ActualValue; DoubleValue moveQuality = MoveQualityParameter.ActualValue; DoubleValue quality = QualityParameter.ActualValue; groupingVector.GroupingVector = (move.GetSolutionAfterMove() as GroupingVectorEncoding).GroupingVector; PackingPlanParameter.ActualValue = PackingPlanAfterMoveParameter.ActualValue; quality.Value = moveQuality.Value; return base.Apply(); } } }