Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/TwoOptStar/PotvinTwoOptStarMoveTabuCriterion.cs

Last change on this file was 17717, checked in by abeham, 4 years ago

#2521: working on VRP (refactoring all the capabilities, features, and operator discovery)

File size: 7.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System.Collections.Generic;
23using HEAL.Attic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Operators;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Problems.VehicleRouting.Interfaces;
31
32namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
33  [Item("PotvinTwoOptStarTabuCriterion", @"Checks if a certain two opt star move is tabu.")]
34  [StorableType("B00189B4-0B8A-444D-BE71-B55C7DCA0EC4")]
35  public class PotvinTwoOptStarMoveTabuCriterion : SingleSuccessorOperator, IPotvinTwoOptStarMoveOperator, ITabuChecker, IPotvinOperator, IVRPMoveOperator {
36    public override bool CanChangeName {
37      get { return false; }
38    }
39
40    public ILookupParameter<PotvinTwoOptStarMove> TwoOptStarMoveParameter {
41      get { return (ILookupParameter<PotvinTwoOptStarMove>)Parameters["PotvinTwoOptStarMove"]; }
42    }
43    public ILookupParameter VRPMoveParameter {
44      get { return TwoOptStarMoveParameter; }
45    }
46    public ILookupParameter<IVRPEncodedSolution> VRPToursParameter {
47      get { return (ILookupParameter<IVRPEncodedSolution>)Parameters["VRPTours"]; }
48    }
49    public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter {
50      get { return (LookupParameter<IVRPProblemInstance>)Parameters["ProblemInstance"]; }
51    }
52
53    public ILookupParameter<ItemList<IItem>> TabuListParameter {
54      get { return (ILookupParameter<ItemList<IItem>>)Parameters["TabuList"]; }
55    }
56    public ILookupParameter<BoolValue> MoveTabuParameter {
57      get { return (ILookupParameter<BoolValue>)Parameters["MoveTabu"]; }
58    }
59    public IValueLookupParameter<BoolValue> MaximizationParameter {
60      get { return (IValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
61    }
62    public ILookupParameter<DoubleValue> MoveQualityParameter {
63      get { return (ILookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
64    }
65    public ValueParameter<BoolValue> UseAspirationCriterionParameter {
66      get { return (ValueParameter<BoolValue>)Parameters["UseAspirationCriterion"]; }
67    }
68
69    public ILookupParameter<DoubleValue> MoveDistanceParameter {
70      get { return (ILookupParameter<DoubleValue>)Parameters["MoveDistance"]; }
71    }
72    public ILookupParameter<DoubleValue> MoveOverloadParameter {
73      get { return (ILookupParameter<DoubleValue>)Parameters["MoveOverload"]; }
74    }
75    public ILookupParameter<DoubleValue> MoveTardinessParameter {
76      get { return (ILookupParameter<DoubleValue>)Parameters["MoveTardiness"]; }
77    }
78
79    public BoolValue UseAspirationCriterion {
80      get { return UseAspirationCriterionParameter.Value; }
81      set { UseAspirationCriterionParameter.Value = value; }
82    }
83
84    [StorableConstructor]
85    protected PotvinTwoOptStarMoveTabuCriterion(StorableConstructorFlag _) : base(_) { }
86    protected PotvinTwoOptStarMoveTabuCriterion(PotvinTwoOptStarMoveTabuCriterion original, Cloner cloner) : base(original, cloner) { }
87    public PotvinTwoOptStarMoveTabuCriterion()
88      : base() {
89      Parameters.Add(new LookupParameter<PotvinTwoOptStarMove>("PotvinTwoOptStarMove", "The moves that should be made."));
90      Parameters.Add(new LookupParameter<IVRPEncodedSolution>("VRPTours", "The VRP tours considered in the move."));
91      Parameters.Add(new LookupParameter<IVRPProblemInstance>("ProblemInstance", "The VRP problem instance"));
92
93      Parameters.Add(new LookupParameter<BoolValue>("MoveTabu", "The variable to store if a move was tabu."));
94      Parameters.Add(new LookupParameter<ItemList<IItem>>("TabuList", "The tabu list."));
95      Parameters.Add(new ValueParameter<BoolValue>("UseAspirationCriterion", "Whether to use the aspiration criterion or not.", new BoolValue(true)));
96      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, else if it is a minimization problem."));
97      Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The quality of the current move."));
98
99      Parameters.Add(new LookupParameter<DoubleValue>("MoveDistance", "The distance of the move"));
100      Parameters.Add(new LookupParameter<DoubleValue>("MoveOverload", "The overload of the move"));
101      Parameters.Add(new LookupParameter<DoubleValue>("MoveTardiness", "The tardiness of the move"));
102    }
103
104    public override IDeepCloneable Clone(Cloner cloner) {
105      return new PotvinTwoOptStarMoveTabuCriterion(this, cloner);
106    }
107
108    public override IOperation Apply() {
109      ItemList<IItem> tabuList = TabuListParameter.ActualValue;
110      double moveQuality = MoveQualityParameter.ActualValue.Value;
111      bool useAspiration = UseAspirationCriterion.Value;
112      bool isTabu = false;
113      PotvinTwoOptStarMove move = TwoOptStarMoveParameter.ActualValue;
114
115      List<int> segmentX1;
116      List<int> segmentX2;
117      PotvinTwoOptStarMoveMaker.GetSegments(move, out segmentX1, out segmentX2);
118
119      foreach (IItem tabuMove in tabuList) {
120        PotvinTwoOptStarMoveAttribute attribute = tabuMove as PotvinTwoOptStarMoveAttribute;
121
122        if (attribute != null) {
123          double distance = 0;
124          if (MoveDistanceParameter.ActualValue != null)
125            distance = MoveDistanceParameter.ActualValue.Value;
126
127          double overload = 0;
128          if (MoveOverloadParameter.ActualValue != null)
129            overload = MoveOverloadParameter.ActualValue.Value;
130
131          double tardiness = 0;
132          if (MoveTardinessParameter.ActualValue != null)
133            tardiness = MoveTardinessParameter.ActualValue.Value;
134
135          IVRPProblemInstance instance = ProblemInstanceParameter.ActualValue;
136          double quality = attribute.Distance * instance.DistanceFactor.Value;
137
138          IHomogenousCapacitatedProblemInstance cvrp = instance as IHomogenousCapacitatedProblemInstance;
139          if (cvrp != null)
140            quality += attribute.Overload * cvrp.OverloadPenalty.Value;
141
142          ITimeWindowedProblemInstance vrptw = instance as ITimeWindowedProblemInstance;
143          if (vrptw != null)
144            quality += attribute.Tardiness * vrptw.TardinessPenalty.Value;
145
146          if (!useAspiration || moveQuality >= quality) {
147            if (attribute.Tour == move.Tour1 && segmentX2.Contains(attribute.City) ||
148                attribute.Tour == move.Tour2 && segmentX1.Contains(attribute.City)) {
149              isTabu = true;
150              break;
151            }
152
153            if (attribute.Distance == distance && attribute.Overload == overload && attribute.Tardiness == tardiness) {
154              isTabu = true;
155              break;
156            }
157          }
158        }
159      }
160
161      MoveTabuParameter.ActualValue = new BoolValue(isTabu);
162      return base.Apply();
163    }
164  }
165}
Note: See TracBrowser for help on using the repository browser.