Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/BestVRPSolutionAnalyzer.cs @ 4860

Last change on this file since 4860 was 4860, checked in by svonolfe, 14 years ago

Merged changes from trunk into branch (#1177)

File size: 7.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Linq;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Operators;
26using HeuristicLab.Optimization;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29using HeuristicLab.Problems.VehicleRouting.Interfaces;
30using HeuristicLab.Problems.VehicleRouting.Variants;
31using HeuristicLab.Common;
32
33namespace HeuristicLab.Problems.VehicleRouting {
34  /// <summary>
35  /// An operator for analyzing the best solution of Vehicle Routing Problems.
36  /// </summary>
37  [Item("BestVRPSolutionAnalyzer", "An operator for analyzing the best solution of Vehicle Routing Problems.")]
38  [StorableClass]
39  public sealed class BestVRPSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer, IGeneralVRPOperator {
40    public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter {
41      get { return (ILookupParameter<IVRPProblemInstance>)Parameters["ProblemInstance"]; }
42    }
43    public ScopeTreeLookupParameter<IVRPEncoding> VRPToursParameter {
44      get { return (ScopeTreeLookupParameter<IVRPEncoding>)Parameters["VRPTours"]; }
45    }
46
47    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
48      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
49    }
50    public ScopeTreeLookupParameter<DoubleValue> DistanceParameter {
51      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Distance"]; }
52    }
53    public ScopeTreeLookupParameter<DoubleValue> VehiclesUtilizedParameter {
54      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["VehiclesUtilized"]; }
55    }
56
57    public LookupParameter<VRPSolution> BestSolutionParameter {
58      get { return (LookupParameter<VRPSolution>)Parameters["BestSolution"]; }
59    }
60    public ValueLookupParameter<ResultCollection> ResultsParameter {
61      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
62    }
63
64    public LookupParameter<DoubleValue> BestKnownQualityParameter {
65      get { return (LookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
66    }
67    public LookupParameter<VRPSolution> BestKnownSolutionParameter {
68      get { return (LookupParameter<VRPSolution>)Parameters["BestKnownSolution"]; }
69    }
70
71    [StorableConstructor]
72    private BestVRPSolutionAnalyzer(bool deserializing) : base(deserializing) { }
73
74    public BestVRPSolutionAnalyzer()
75      : base() {
76        Parameters.Add(new LookupParameter<IVRPProblemInstance>("ProblemInstance", "The problem instance."));
77        Parameters.Add(new ScopeTreeLookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated."));
78
79        Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this VRP instance."));
80        Parameters.Add(new LookupParameter<VRPSolution>("BestKnownSolution", "The best known solution of this VRP instance."));
81
82        Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the VRP solutions which should be analyzed."));
83        Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Distance", "The distances of the VRP solutions which should be analyzed."));
84        Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("VehiclesUtilized", "The utilized vehicles of the VRP solutions which should be analyzed."));
85
86        Parameters.Add(new LookupParameter<VRPSolution>("BestSolution", "The best TSP solution."));
87        Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the best VRP solution should be stored."));
88    }
89
90    public override IDeepCloneable Clone(Cloner cloner) {
91      return new BestVRPSolutionAnalyzer(this, cloner);
92    }
93
94    private BestVRPSolutionAnalyzer(BestVRPSolutionAnalyzer original, Cloner cloner)
95      : base(original, cloner) {
96    }
97
98    [StorableHook(HookType.AfterDeserialization)]
99    private void AfterDeserializationHook() {
100      #region Backwards Compatibility
101      if (!Parameters.ContainsKey("BestKnownQuality")) {
102        Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this VRP instance."));
103      }
104      if (!Parameters.ContainsKey("BestKnownSolution")) {
105        Parameters.Add(new LookupParameter<VRPSolution>("BestKnownSolution", "The best known solution of this VRP instance."));
106      }
107      #endregion
108    }
109
110    public override IOperation Apply() {
111      IVRPProblemInstance problemInstance = ProblemInstanceParameter.ActualValue;
112      ItemArray<IVRPEncoding> solutions = VRPToursParameter.ActualValue;
113      ResultCollection results = ResultsParameter.ActualValue;
114
115      ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
116      ItemArray<DoubleValue> distances = DistanceParameter.ActualValue;
117      ItemArray<DoubleValue> vehiclesUtilizations = VehiclesUtilizedParameter.ActualValue;
118
119      int i = qualities.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
120
121      DoubleValue bestKnownQuality = BestKnownQualityParameter.ActualValue;
122
123      IVRPEncoding best = solutions[i].Clone() as IVRPEncoding;
124      VRPSolution solution = BestSolutionParameter.ActualValue;
125      if (solution == null) {
126        solution = new VRPSolution(problemInstance, best.Clone() as IVRPEncoding, new DoubleValue(qualities[i].Value));
127        BestSolutionParameter.ActualValue = solution;
128        results.Add(new Result("Best VRP Solution", solution));
129
130        results.Add(new Result("Best VRP Solution Distance", new DoubleValue(distances[i].Value)));
131        results.Add(new Result("Best VRP Solution VehicleUtilization", new DoubleValue(vehiclesUtilizations[i].Value)));
132      } else {
133        if (qualities[i].Value <= solution.Quality.Value) {
134          solution.ProblemInstance = problemInstance;
135          solution.Solution = best.Clone() as IVRPEncoding;
136          solution.Quality.Value = qualities[i].Value;
137          (results["Best VRP Solution Distance"].Value as DoubleValue).Value = distances[i].Value;
138          (results["Best VRP Solution VehicleUtilization"].Value as DoubleValue).Value = vehiclesUtilizations[i].Value;
139        }
140      }
141
142      if (bestKnownQuality == null ||
143          qualities[i].Value < bestKnownQuality.Value) {
144        BestKnownQualityParameter.ActualValue = new DoubleValue(qualities[i].Value);
145        BestKnownSolutionParameter.ActualValue = (VRPSolution)solution.Clone();
146      }
147
148      return base.Apply();
149    }
150  }
151}
Note: See TracBrowser for help on using the repository browser.