Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluator.cs @ 6522

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

Implemented unified tabu search (WIP) (#1177)

File size: 5.2 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;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Problems.VehicleRouting.Interfaces;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using HeuristicLab.Core;
29using HeuristicLab.Parameters;
30using HeuristicLab.Data;
31using HeuristicLab.Optimization;
32using HeuristicLab.PluginInfrastructure;
33using HeuristicLab.Problems.VehicleRouting.Variants;
34using HeuristicLab.Problems.VehicleRouting.Encodings;
35using HeuristicLab.Common;
36
37namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
38  [Item("VRPEvaluator", "Represents a VRP evaluator.")]
39  [StorableClass]
40  public abstract class VRPEvaluator: VRPOperator, IVRPEvaluator {
41    public ILookupParameter<IVRPEncoding> VRPToursParameter {
42      get { return (ILookupParameter<IVRPEncoding>)Parameters["VRPTours"]; }
43    }
44   
45    #region ISingleObjectiveEvaluator Members
46    public ILookupParameter<DoubleValue> QualityParameter {
47      get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
48    }
49    #endregion
50
51    public ILookupParameter<DoubleValue> DistanceParameter {
52      get { return (ILookupParameter<DoubleValue>)Parameters["Distance"]; }
53    }
54    public ILookupParameter<DoubleValue> VehcilesUtilizedParameter {
55      get { return (ILookupParameter<DoubleValue>)Parameters["VehiclesUtilized"]; }
56    }
57
58    public ILookupParameter<DoubleValue> PenaltyParameter {
59      get { return (ILookupParameter<DoubleValue>)Parameters["Penalty"]; }
60    }
61   
62    [StorableConstructor]
63    protected VRPEvaluator(bool deserializing) : base(deserializing) { }
64
65    public VRPEvaluator() {
66      Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated."));
67
68      Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The evaluated quality of the VRP solution."));
69      Parameters.Add(new LookupParameter<DoubleValue>("Distance", "The distance."));
70      Parameters.Add(new LookupParameter<DoubleValue>("VehiclesUtilized", "The number of vehicles utilized."));
71
72      Parameters.Add(new LookupParameter<DoubleValue>("Penalty", "The applied penalty."));
73    }
74
75    protected VRPEvaluator(VRPEvaluator original, Cloner cloner)
76      : base(original, cloner) {
77    }
78
79    protected virtual VRPEvaluation CreateTourEvaluation() {
80      return new VRPEvaluation();
81    }
82
83    protected abstract void EvaluateTour(VRPEvaluation eval, IVRPProblemInstance instance, Tour tour);
84
85    protected virtual void InitResultParameters() {
86      QualityParameter.ActualValue = new DoubleValue(0);
87      VehcilesUtilizedParameter.ActualValue = new DoubleValue(0);
88      DistanceParameter.ActualValue = new DoubleValue(0);
89      PenaltyParameter.ActualValue = new DoubleValue(0);
90    }
91
92    protected virtual void SetResultParameters(VRPEvaluation tourEvaluation) {
93      QualityParameter.ActualValue.Value = tourEvaluation.Quality;
94      VehcilesUtilizedParameter.ActualValue.Value = tourEvaluation.VehicleUtilization;
95      DistanceParameter.ActualValue.Value = tourEvaluation.Distance;
96      PenaltyParameter.ActualValue.Value = tourEvaluation.Penalty;
97    }
98
99    private VRPEvaluation EvaluateTour(IVRPProblemInstance instance, Tour tour) {
100      VRPEvaluation evaluation = CreateTourEvaluation();
101      EvaluateTour(evaluation, instance, tour);
102      return evaluation;
103    }
104
105    #region IVRPEvaluator Members
106
107    public bool Feasible(VRPEvaluation evaluation) {
108      return evaluation.Penalty < double.Epsilon;
109    }
110
111    public VRPEvaluation Evaluate(IVRPProblemInstance instance, IVRPEncoding solution) {
112      VRPEvaluation evaluation = CreateTourEvaluation();
113
114      foreach (Tour tour in solution.GetTours()) {
115        EvaluateTour(evaluation, instance, tour);
116      }
117
118      return evaluation;
119    }
120
121    public VRPEvaluation Evaluate(IVRPProblemInstance instance, Tour tour) {
122      return EvaluateTour(instance, tour);
123    }
124
125    public override IOperation Apply() {
126      InitResultParameters();
127
128      VRPEvaluation evaluation = CreateTourEvaluation();
129      foreach (Tour tour in VRPToursParameter.ActualValue.GetTours()) {
130        EvaluateTour(evaluation, ProblemInstance, tour);
131      }
132      SetResultParameters(evaluation);
133
134      QualityParameter.ActualValue = new DoubleValue(evaluation.Quality);
135
136      return base.Apply();
137    }
138
139    #endregion
140  }
141}
Note: See TracBrowser for help on using the repository browser.