#region License Information /* HeuristicLab * Copyright (C) 2002-2016 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; using HeuristicLab.Problems.VehicleRouting.Interfaces; using HeuristicLab.Problems.VehicleRouting.Variants; namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { [Item("MultiVRPMoveTabuMaker", "A multi VRP move tabu maker.")] [StorableType("d993b893-fc8f-4546-b5ef-fd983001250d")] public class MultiVRPMoveTabuMaker : SingleSuccessorOperator, IMultiVRPMoveOperator, ITabuMaker, IGeneralVRPOperator, ISingleObjectiveOperator { public ILookupParameter VRPMoveParameter { get { return (ILookupParameter)Parameters["VRPMove"]; } } public LookupParameter> TabuListParameter { get { return (LookupParameter>)Parameters["TabuList"]; } } public ValueLookupParameter TabuTenureParameter { get { return (ValueLookupParameter)Parameters["TabuTenure"]; } } public ILookupParameter MoveQualityParameter { get { return (ILookupParameter)Parameters["MoveQuality"]; } } public ILookupParameter QualityParameter { get { return (ILookupParameter)Parameters["Quality"]; } } public IValueLookupParameter MaximizationParameter { get { return (IValueLookupParameter)Parameters["Maximization"]; } } public ILookupParameter VRPToursParameter { get { return (ILookupParameter)Parameters["VRPTours"]; } } public ILookupParameter ProblemInstanceParameter { get { return (LookupParameter)Parameters["ProblemInstance"]; } } [StorableConstructor] protected MultiVRPMoveTabuMaker(StorableConstructorFlag deserializing) : base(deserializing) { } public MultiVRPMoveTabuMaker() : base() { Parameters.Add(new LookupParameter("VRPMove", "The move.")); Parameters.Add(new LookupParameter>("TabuList", "The tabu list where move attributes are stored.")); Parameters.Add(new ValueLookupParameter("TabuTenure", "The tenure of the tabu list.")); Parameters.Add(new LookupParameter("MoveQuality", "The quality of the move.")); Parameters.Add(new LookupParameter("Quality", "The quality of the solution.")); Parameters.Add(new ValueLookupParameter("Maximization", "True if the problem is a maximization problem, else if it is a minimization problem.")); Parameters.Add(new LookupParameter("VRPTours", "The VRP tours considered in the move.")); Parameters.Add(new LookupParameter("ProblemInstance", "The VRP problem instance")); } public override IDeepCloneable Clone(Cloner cloner) { return new MultiVRPMoveTabuMaker(this, cloner); } protected MultiVRPMoveTabuMaker(MultiVRPMoveTabuMaker original, Cloner cloner) : base(original, cloner) { } public override IOperation Apply() { IVRPMove move = VRPMoveParameter.ActualValue as IVRPMove; ITabuMaker moveTabuMaker = move.GetTabuMaker(); (moveTabuMaker as IVRPMoveOperator).VRPMoveParameter.ActualName = VRPMoveParameter.Name; OperationCollection next = new OperationCollection(base.Apply()); next.Insert(0, ExecutionContext.CreateOperation(moveTabuMaker)); return next; } } }