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 |
|
---|
22 | using System.Linq;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Data;
|
---|
25 | using HeuristicLab.Operators;
|
---|
26 | using HeuristicLab.Parameters;
|
---|
27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 |
|
---|
29 | namespace HeuristicLab.Problems.VehicleRouting {
|
---|
30 | [Item("BestVRPToursMemorizer", "An operator that updates the best VRP tour found so far in the scope three.")]
|
---|
31 | [StorableClass]
|
---|
32 | public class BestVRPToursMemorizer : SingleSuccessorOperator {
|
---|
33 | public ScopeTreeLookupParameter<DoubleValue> OverloadParameter {
|
---|
34 | get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Overload"]; }
|
---|
35 | }
|
---|
36 | public ScopeTreeLookupParameter<DoubleValue> TardinessParameter {
|
---|
37 | get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Tardiness"]; }
|
---|
38 | }
|
---|
39 | public ScopeTreeLookupParameter<DoubleValue> DistanceParameter {
|
---|
40 | get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Distance"]; }
|
---|
41 | }
|
---|
42 | public ScopeTreeLookupParameter<DoubleValue> TravelTimeParameter {
|
---|
43 | get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["TravelTime"]; }
|
---|
44 | }
|
---|
45 | public ScopeTreeLookupParameter<DoubleValue> VehiclesUtilizedParameter {
|
---|
46 | get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["VehiclesUtilized"]; }
|
---|
47 | }
|
---|
48 |
|
---|
49 | public ValueLookupParameter<DoubleValue> BestOverloadParameter {
|
---|
50 | get { return (ValueLookupParameter<DoubleValue>)Parameters["BestOverload"]; }
|
---|
51 | }
|
---|
52 | public ValueLookupParameter<DoubleValue> BestTardinessParameter {
|
---|
53 | get { return (ValueLookupParameter<DoubleValue>)Parameters["BestTardiness"]; }
|
---|
54 | }
|
---|
55 | public ValueLookupParameter<DoubleValue> BestDistanceParameter {
|
---|
56 | get { return (ValueLookupParameter<DoubleValue>)Parameters["BestDistance"]; }
|
---|
57 | }
|
---|
58 | public ValueLookupParameter<DoubleValue> BestTravelTimeParameter {
|
---|
59 | get { return (ValueLookupParameter<DoubleValue>)Parameters["BestTravelTime"]; }
|
---|
60 | }
|
---|
61 | public ValueLookupParameter<DoubleValue> BestVehiclesUtilizedParameter {
|
---|
62 | get { return (ValueLookupParameter<DoubleValue>)Parameters["BestVehiclesUtilized"]; }
|
---|
63 | }
|
---|
64 |
|
---|
65 | public BestVRPToursMemorizer()
|
---|
66 | : base() {
|
---|
67 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Distance", "The distances of the VRP solutions which should be analyzed."));
|
---|
68 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Overload", "The overloads of the VRP solutions which should be analyzed."));
|
---|
69 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Tardiness", "The tardiness of the VRP solutions which should be analyzed."));
|
---|
70 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("TravelTime", "The travel times of the VRP solutions which should be analyzed."));
|
---|
71 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("VehiclesUtilized", "The utilized vehicles of the VRP solutions which should be analyzed."));
|
---|
72 |
|
---|
73 | Parameters.Add(new ValueLookupParameter<DoubleValue>("BestDistance", "The best distance found so far."));
|
---|
74 | Parameters.Add(new ValueLookupParameter<DoubleValue>("BestOverload", "The best overload found so far."));
|
---|
75 | Parameters.Add(new ValueLookupParameter<DoubleValue>("BestTardiness", "The best tardiness found so far."));
|
---|
76 | Parameters.Add(new ValueLookupParameter<DoubleValue>("BestTravelTime", "The best travel time found so far."));
|
---|
77 | Parameters.Add(new ValueLookupParameter<DoubleValue>("BestVehiclesUtilized", "The best vehicles utilized found so far."));
|
---|
78 |
|
---|
79 | }
|
---|
80 |
|
---|
81 | public override IOperation Apply() {
|
---|
82 | int i = OverloadParameter.ActualValue.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
|
---|
83 | if (BestOverloadParameter.ActualValue == null)
|
---|
84 | BestOverloadParameter.ActualValue = new DoubleValue(OverloadParameter.ActualValue[i].Value);
|
---|
85 | else if(OverloadParameter.ActualValue[i].Value <= BestOverloadParameter.ActualValue.Value)
|
---|
86 | BestOverloadParameter.ActualValue.Value = OverloadParameter.ActualValue[i].Value;
|
---|
87 |
|
---|
88 | i = TardinessParameter.ActualValue.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
|
---|
89 | if (BestTardinessParameter.ActualValue == null)
|
---|
90 | BestTardinessParameter.ActualValue = new DoubleValue(TardinessParameter.ActualValue[i].Value);
|
---|
91 | else if (TardinessParameter.ActualValue[i].Value <= BestTardinessParameter.ActualValue.Value)
|
---|
92 | BestTardinessParameter.ActualValue.Value = TardinessParameter.ActualValue[i].Value;
|
---|
93 |
|
---|
94 | i = DistanceParameter.ActualValue.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
|
---|
95 | if (BestDistanceParameter.ActualValue == null)
|
---|
96 | BestDistanceParameter.ActualValue = new DoubleValue(DistanceParameter.ActualValue[i].Value);
|
---|
97 | else if (DistanceParameter.ActualValue[i].Value <= BestDistanceParameter.ActualValue.Value)
|
---|
98 | BestDistanceParameter.ActualValue.Value = DistanceParameter.ActualValue[i].Value;
|
---|
99 |
|
---|
100 | i = TravelTimeParameter.ActualValue.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
|
---|
101 | if (BestTravelTimeParameter.ActualValue == null)
|
---|
102 | BestTravelTimeParameter.ActualValue = new DoubleValue(TravelTimeParameter.ActualValue[i].Value);
|
---|
103 | else if (TravelTimeParameter.ActualValue[i].Value <= BestTravelTimeParameter.ActualValue.Value)
|
---|
104 | BestTravelTimeParameter.ActualValue.Value = TravelTimeParameter.ActualValue[i].Value;
|
---|
105 |
|
---|
106 | i = VehiclesUtilizedParameter.ActualValue.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
|
---|
107 | if (BestVehiclesUtilizedParameter.ActualValue == null)
|
---|
108 | BestVehiclesUtilizedParameter.ActualValue = new DoubleValue(VehiclesUtilizedParameter.ActualValue[i].Value);
|
---|
109 | else if (VehiclesUtilizedParameter.ActualValue[i].Value <= BestVehiclesUtilizedParameter.ActualValue.Value)
|
---|
110 | BestVehiclesUtilizedParameter.ActualValue.Value = VehiclesUtilizedParameter.ActualValue[i].Value;
|
---|
111 |
|
---|
112 | return base.Apply();
|
---|
113 | }
|
---|
114 | }
|
---|
115 | }
|
---|