Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs @ 10648

Last change on this file since 10648 was 10648, checked in by gkronber, 10 years ago

#2141 merged r10362:10363 from trunk to stable

File size: 16.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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;
23using System.Collections.Generic;
24using System.Drawing;
25using System.Linq;
26using HeuristicLab.Analysis;
27using HeuristicLab.Common;
28using HeuristicLab.Core;
29using HeuristicLab.Data;
30using HeuristicLab.Optimization;
31using HeuristicLab.Parameters;
32using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
33using HeuristicLab.PluginInfrastructure;
34using HeuristicLab.Problems.Instances;
35using HeuristicLab.Problems.VehicleRouting.Interfaces;
36using HeuristicLab.Problems.VehicleRouting.Interpreters;
37using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
38using HeuristicLab.Problems.VehicleRouting.Variants;
39
40namespace HeuristicLab.Problems.VehicleRouting {
41  public interface IVRPInstanceConsumer :
42    IProblemInstanceConsumer<CVRPData>, IProblemInstanceConsumer<CVRPTWData>,
43    IProblemInstanceConsumer<MDCVRPData>, IProblemInstanceConsumer<MDCVRPTWData>,
44    IProblemInstanceConsumer<PDPTWData> {
45  }
46
47  [Item("Vehicle Routing Problem", "Represents a Vehicle Routing Problem.")]
48  [Creatable("Problems")]
49  [StorableClass]
50  public sealed class VehicleRoutingProblem : Problem, ISingleObjectiveHeuristicOptimizationProblem, IStorableContent, IVRPInstanceConsumer {
51    public string Filename { get; set; }
52
53    public static new Image StaticItemImage {
54      get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; }
55    }
56
57    #region Parameter Properties
58    public ValueParameter<BoolValue> MaximizationParameter {
59      get { return (ValueParameter<BoolValue>)Parameters["Maximization"]; }
60    }
61    IParameter ISingleObjectiveHeuristicOptimizationProblem.MaximizationParameter {
62      get { return MaximizationParameter; }
63    }
64    public ValueParameter<IVRPProblemInstance> ProblemInstanceParameter {
65      get { return (ValueParameter<IVRPProblemInstance>)Parameters["ProblemInstance"]; }
66    }
67    public OptionalValueParameter<DoubleValue> BestKnownQualityParameter {
68      get { return (OptionalValueParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
69    }
70    IParameter ISingleObjectiveHeuristicOptimizationProblem.BestKnownQualityParameter {
71      get { return BestKnownQualityParameter; }
72    }
73    public OptionalValueParameter<VRPSolution> BestKnownSolutionParameter {
74      get { return (OptionalValueParameter<VRPSolution>)Parameters["BestKnownSolution"]; }
75    }
76    public IConstrainedValueParameter<IVRPCreator> SolutionCreatorParameter {
77      get { return (IConstrainedValueParameter<IVRPCreator>)Parameters["SolutionCreator"]; }
78    }
79    IParameter IHeuristicOptimizationProblem.SolutionCreatorParameter {
80      get { return SolutionCreatorParameter; }
81    }
82    public IValueParameter<IVRPEvaluator> EvaluatorParameter {
83      get { return (IValueParameter<IVRPEvaluator>)Parameters["Evaluator"]; }
84    }
85    IParameter IHeuristicOptimizationProblem.EvaluatorParameter {
86      get { return EvaluatorParameter; }
87    }
88    #endregion
89
90    #region Properties
91    public IVRPProblemInstance ProblemInstance {
92      get { return ProblemInstanceParameter.Value; }
93      set { ProblemInstanceParameter.Value = value; }
94    }
95
96    public VRPSolution BestKnownSolution {
97      get { return BestKnownSolutionParameter.Value; }
98      set { BestKnownSolutionParameter.Value = value; }
99    }
100
101    public DoubleValue BestKnownQuality {
102      get { return BestKnownQualityParameter.Value; }
103      set { BestKnownQualityParameter.Value = value; }
104    }
105
106    public ISingleObjectiveEvaluator Evaluator {
107      get { return EvaluatorParameter.Value; }
108    }
109
110    IEvaluator IHeuristicOptimizationProblem.Evaluator {
111      get { return this.Evaluator; }
112    }
113
114    ISolutionCreator IHeuristicOptimizationProblem.SolutionCreator {
115      get { return SolutionCreatorParameter.Value; }
116    }
117    public IVRPCreator SolutionCreator {
118      get { return SolutionCreatorParameter.Value; }
119      set { SolutionCreatorParameter.Value = value; }
120    }
121    private SingleObjectivePopulationDiversityAnalyzer SingleObjectivePopulationDiversityAnalyzer {
122      get { return Operators.OfType<SingleObjectivePopulationDiversityAnalyzer>().FirstOrDefault(); }
123    }
124    #endregion
125
126    [StorableConstructor]
127    private VehicleRoutingProblem(bool deserializing) : base(deserializing) { }
128    public VehicleRoutingProblem()
129      : base() {
130      Parameters.Add(new ValueParameter<BoolValue>("Maximization", "Set to false as the Vehicle Routing Problem is a minimization problem.", new BoolValue(false)));
131      Parameters.Add(new ValueParameter<IVRPProblemInstance>("ProblemInstance", "The VRP problem instance"));
132      Parameters.Add(new OptionalValueParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this VRP instance."));
133      Parameters.Add(new OptionalValueParameter<VRPSolution>("BestKnownSolution", "The best known solution of this VRP instance."));
134
135      Parameters.Add(new ConstrainedValueParameter<IVRPCreator>("SolutionCreator", "The operator which should be used to create new VRP solutions."));
136      Parameters.Add(new ValueParameter<IVRPEvaluator>("Evaluator", "The operator which should be used to evaluate VRP solutions."));
137
138      EvaluatorParameter.Hidden = true;
139
140      InitializeRandomVRPInstance();
141      InitializeOperators();
142
143      AttachEventHandlers();
144      AttachProblemInstanceEventHandlers();
145
146      EvaluatorParameter.Value = ProblemInstance.SolutionEvaluator;
147    }
148
149    public override IDeepCloneable Clone(Cloner cloner) {
150      cloner.Clone(ProblemInstance);
151      return new VehicleRoutingProblem(this, cloner);
152    }
153
154    private VehicleRoutingProblem(VehicleRoutingProblem original, Cloner cloner)
155      : base(original, cloner) {
156      this.AttachEventHandlers();
157      this.AttachProblemInstanceEventHandlers();
158
159      ProblemInstance.SolutionEvaluator = EvaluatorParameter.Value;
160    }
161
162    #region Events
163    public event EventHandler SolutionCreatorChanged;
164    private void OnSolutionCreatorChanged() {
165      EventHandler handler = SolutionCreatorChanged;
166      if (handler != null) handler(this, EventArgs.Empty);
167    }
168    public event EventHandler EvaluatorChanged;
169    private void OnEvaluatorChanged() {
170      EventHandler handler = EvaluatorChanged;
171      if (handler != null) handler(this, EventArgs.Empty);
172    }
173    #endregion
174
175    #region Helpers
176    [StorableHook(HookType.AfterDeserialization)]
177    private void AfterDeserialization() {
178      AttachEventHandlers();
179      AttachProblemInstanceEventHandlers();
180
181      ProblemInstance.SolutionEvaluator = EvaluatorParameter.Value;
182    }
183
184    [Storable(Name = "operators", AllowOneWay = true)]
185    private List<IOperator> StorableOperators {
186      set { Operators.AddRange(value); }
187    }
188
189    private void AttachEventHandlers() {
190      ProblemInstanceParameter.ValueChanged += new EventHandler(ProblemInstanceParameter_ValueChanged);
191      BestKnownSolutionParameter.ValueChanged += new EventHandler(BestKnownSolutionParameter_ValueChanged);
192      EvaluatorParameter.ValueChanged += new EventHandler(EvaluatorParameter_ValueChanged);
193      SolutionCreatorParameter.ValueChanged += new EventHandler(SolutionCreatorParameter_ValueChanged);
194    }
195
196    private void AttachProblemInstanceEventHandlers() {
197      if (ProblemInstance != null) {
198        ProblemInstance.EvaluationChanged += new EventHandler(ProblemInstance_EvaluationChanged);
199      }
200    }
201
202    private void EvalBestKnownSolution() {
203      if (BestKnownSolution != null) {
204        //call evaluator
205        BestKnownQuality = new DoubleValue(ProblemInstance.Evaluate(BestKnownSolution.Solution).Quality);
206        BestKnownSolution.Quality = BestKnownQuality;
207      } else {
208        BestKnownQuality = null;
209      }
210    }
211
212    void BestKnownSolutionParameter_ValueChanged(object sender, EventArgs e) {
213      EvalBestKnownSolution();
214    }
215
216    void ProblemInstance_EvaluationChanged(object sender, EventArgs e) {
217      EvalBestKnownSolution();
218    }
219
220    void ProblemInstanceParameter_ValueChanged(object sender, EventArgs e) {
221      InitializeOperators();
222      AttachProblemInstanceEventHandlers();
223
224      EvaluatorParameter.Value = ProblemInstance.SolutionEvaluator;
225
226      OnSolutionCreatorChanged();
227      OnEvaluatorChanged();
228      OnOperatorsChanged();
229    }
230
231    public void SetProblemInstance(IVRPProblemInstance instance) {
232      ProblemInstanceParameter.ValueChanged -= new EventHandler(ProblemInstanceParameter_ValueChanged);
233
234      ProblemInstance = instance;
235      AttachProblemInstanceEventHandlers();
236
237      OnSolutionCreatorChanged();
238      OnEvaluatorChanged();
239
240      ProblemInstanceParameter.ValueChanged += new EventHandler(ProblemInstanceParameter_ValueChanged);
241    }
242
243    private void SolutionCreatorParameter_ValueChanged(object sender, EventArgs e) {
244      OnSolutionCreatorChanged();
245    }
246    private void EvaluatorParameter_ValueChanged(object sender, EventArgs e) {
247      if (ProblemInstance != null)
248        ProblemInstance.SolutionEvaluator = EvaluatorParameter.Value;
249      OnEvaluatorChanged();
250    }
251
252    private void InitializeOperators() {
253      var solutionCreatorParameter = SolutionCreatorParameter as ConstrainedValueParameter<IVRPCreator>;
254      solutionCreatorParameter.ValidValues.Clear();
255
256      Operators.Clear();
257
258      if (ProblemInstance != null) {
259        Operators.AddRange(
260        ProblemInstance.Operators.Concat(
261          ApplicationManager.Manager.GetInstances<IGeneralVRPOperator>().Cast<IOperator>()).OrderBy(op => op.Name));
262        Operators.Add(new VRPSimilarityCalculator());
263        Operators.Add(new SingleObjectivePopulationDiversityAnalyzer());
264
265        IVRPCreator defaultCreator = null;
266        foreach (IVRPCreator creator in Operators.Where(o => o is IVRPCreator)) {
267          solutionCreatorParameter.ValidValues.Add(creator);
268          if (creator is Encodings.Alba.RandomCreator)
269            defaultCreator = creator;
270        }
271        if (defaultCreator != null)
272          solutionCreatorParameter.Value = defaultCreator;
273      }
274
275      ParameterizeOperators();
276    }
277
278    private void ParameterizeOperators() {
279      foreach (IOperator op in Operators.OfType<IOperator>()) {
280        if (op is IMultiVRPOperator) {
281          (op as IMultiVRPOperator).SetOperators(Operators.OfType<IOperator>());
282        }
283      }
284      if (ProblemInstance != null) {
285        foreach (ISingleObjectiveImprovementOperator op in Operators.OfType<ISingleObjectiveImprovementOperator>()) {
286          op.SolutionParameter.ActualName = SolutionCreator.VRPToursParameter.ActualName;
287          op.SolutionParameter.Hidden = true;
288        }
289        foreach (ISingleObjectivePathRelinker op in Operators.OfType<ISingleObjectivePathRelinker>()) {
290          op.ParentsParameter.ActualName = SolutionCreator.VRPToursParameter.ActualName;
291          op.ParentsParameter.Hidden = true;
292        }
293        foreach (VRPSimilarityCalculator op in Operators.OfType<VRPSimilarityCalculator>()) {
294          op.SolutionVariableName = SolutionCreator.VRPToursParameter.ActualName;
295          op.QualityVariableName = ProblemInstance.SolutionEvaluator.QualityParameter.ActualName;
296          op.ProblemInstance = ProblemInstance;
297        }
298        if (SingleObjectivePopulationDiversityAnalyzer != null) {
299          SingleObjectivePopulationDiversityAnalyzer.MaximizationParameter.ActualName = MaximizationParameter.Name;
300          SingleObjectivePopulationDiversityAnalyzer.QualityParameter.ActualName = ProblemInstance.SolutionEvaluator.QualityParameter.ActualName;
301          SingleObjectivePopulationDiversityAnalyzer.ResultsParameter.ActualName = "Results";
302          SingleObjectivePopulationDiversityAnalyzer.SimilarityCalculator = Operators.OfType<VRPSimilarityCalculator>().SingleOrDefault();
303        }
304      }
305    }
306
307    #endregion
308
309    private void InitializeRandomVRPInstance() {
310      System.Random rand = new System.Random();
311
312      CVRPTWProblemInstance problem = new CVRPTWProblemInstance();
313      int cities = 100;
314
315      problem.Coordinates = new DoubleMatrix(cities + 1, 2);
316      problem.Demand = new DoubleArray(cities + 1);
317      problem.DueTime = new DoubleArray(cities + 1);
318      problem.ReadyTime = new DoubleArray(cities + 1);
319      problem.ServiceTime = new DoubleArray(cities + 1);
320
321      problem.Vehicles.Value = 100;
322      problem.Capacity.Value = 200;
323
324      for (int i = 0; i <= cities; i++) {
325        problem.Coordinates[i, 0] = rand.Next(0, 100);
326        problem.Coordinates[i, 1] = rand.Next(0, 100);
327
328        if (i == 0) {
329          problem.Demand[i] = 0;
330          problem.DueTime[i] = Int16.MaxValue;
331          problem.ReadyTime[i] = 0;
332          problem.ServiceTime[i] = 0;
333        } else {
334          problem.Demand[i] = rand.Next(10, 50);
335          problem.DueTime[i] = rand.Next((int)Math.Ceiling(problem.GetDistance(0, i, null)), 1200);
336          problem.ReadyTime[i] = problem.DueTime[i] - rand.Next(0, 100);
337          problem.ServiceTime[i] = 90;
338        }
339      }
340
341      this.ProblemInstance = problem;
342    }
343
344    public void ImportSolution(string solutionFileName) {
345      SolutionParser parser = new SolutionParser(solutionFileName);
346      parser.Parse();
347
348      HeuristicLab.Problems.VehicleRouting.Encodings.Potvin.PotvinEncoding encoding = new Encodings.Potvin.PotvinEncoding(ProblemInstance);
349
350      int cities = 0;
351      foreach (List<int> route in parser.Routes) {
352        Tour tour = new Tour();
353        tour.Stops.AddRange(route);
354        cities += tour.Stops.Count;
355
356        encoding.Tours.Add(tour);
357      }
358
359      if (cities != ProblemInstance.Coordinates.Rows - 1)
360        ErrorHandling.ShowErrorDialog(new Exception("The optimal solution does not seem to correspond with the problem data"));
361      else {
362        VRPSolution solution = new VRPSolution(ProblemInstance, encoding, new DoubleValue(0));
363        BestKnownSolutionParameter.Value = solution;
364      }
365    }
366
367    #region Instance Consuming
368    public void Load(IVRPData data, IVRPDataInterpreter interpreter) {
369      VRPInstanceDescription instance = interpreter.Interpret(data);
370
371      Name = instance.Name;
372      Description = instance.Description;
373      if (ProblemInstance != null && instance.ProblemInstance != null &&
374        instance.ProblemInstance.GetType() == ProblemInstance.GetType())
375        SetProblemInstance(instance.ProblemInstance);
376      else
377        ProblemInstance = instance.ProblemInstance;
378
379      OnReset();
380      BestKnownQuality = null;
381      BestKnownSolution = null;
382
383      if (instance.BestKnownQuality != null) {
384        BestKnownQuality = new DoubleValue((double)instance.BestKnownQuality);
385      }
386
387      if (instance.BestKnownSolution != null) {
388        VRPSolution solution = new VRPSolution(ProblemInstance, instance.BestKnownSolution, new DoubleValue(0));
389        BestKnownSolution = solution;
390      }
391    }
392
393    public void Load(CVRPData data) {
394      Load(data, new CVRPInterpreter());
395    }
396
397    public void Load(CVRPTWData data) {
398      Load(data, new CVRPTWInterpreter());
399    }
400
401    public void Load(MDCVRPData data) {
402      Load(data, new MDCVRPInterpreter());
403    }
404
405    public void Load(MDCVRPTWData data) {
406      Load(data, new MDCVRPTWInterpreter());
407    }
408
409    public void Load(PDPTWData data) {
410      Load(data, new PDPTWInterpreter());
411    }
412
413    #endregion
414  }
415}
Note: See TracBrowser for help on using the repository browser.