Changeset 17010 for branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW
- Timestamp:
- 06/14/19 15:47:37 (6 years ago)
- Location:
- branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWEvaluation.cs
r14185 r17010 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWEvaluator.cs
r14185 r17010 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Problems.VehicleRouting.Interfaces; 30 30 using HeuristicLab.Problems.VehicleRouting.Variants; … … 32 32 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 33 33 [Item("CVRPPDTWEvaluator", "Represents a single depot CVRPPDTW evaluator.")] 34 [Storable Class]34 [StorableType("6324F32C-727E-4593-BB21-4625755F844A")] 35 35 public class CVRPPDTWEvaluator : CVRPTWEvaluator { 36 36 public ILookupParameter<IntValue> PickupViolationsParameter { … … 306 306 307 307 [StorableConstructor] 308 protected CVRPPDTWEvaluator( bool deserializing) : base(deserializing) { }308 protected CVRPPDTWEvaluator(StorableConstructorFlag _) : base(_) { } 309 309 310 310 public CVRPPDTWEvaluator() { -
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWProblemInstance.cs
r14185 r17010 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 36 36 [Item("CVRPPDTWProblemInstance", "Represents a single depot CVRPPDTW instance.")] 37 [Storable Class]37 [StorableType("6DC3F907-9CDC-4CDA-8C84-AC9ED248DB3B")] 38 38 public class CVRPPDTWProblemInstance : CVRPTWProblemInstance, IPickupAndDeliveryProblemInstance { 39 39 protected IValueParameter<IntArray> PickupDeliveryLocationParameter { … … 91 91 92 92 [StorableConstructor] 93 protected CVRPPDTWProblemInstance( bool deserializing) : base(deserializing) { }93 protected CVRPPDTWProblemInstance(StorableConstructorFlag _) : base(_) { } 94 94 95 95 public CVRPPDTWProblemInstance() { … … 117 117 118 118 private void AttachEventHandlers() { 119 PickupDeliveryLocationParameter.ValueChanged += new EventHandler(PickupDeliveryLocationParameter_ValueChanged); 119 PickupDeliveryLocationParameter.ValueChanged += PickupDeliveryLocationParameter_ValueChanged; 120 PickupDeliveryLocation.Reset += PickupDeliveryLocation_Changed; 121 PickupDeliveryLocation.ItemChanged += PickupDeliveryLocation_Changed; 120 122 } 121 123 … … 128 130 #region Event handlers 129 131 void PickupDeliveryLocationParameter_ValueChanged(object sender, EventArgs e) { 130 PickupDeliveryLocationParameter.Value.ItemChanged += new EventHandler<EventArgs<int>>(Value_ItemChanged); 132 PickupDeliveryLocation.Reset += PickupDeliveryLocation_Changed; 133 PickupDeliveryLocation.ItemChanged += PickupDeliveryLocation_Changed; 131 134 EvalBestKnownSolution(); 132 135 } 133 134 void Value_ItemChanged(object sender, EventArgs<int> e) { 136 private void PickupDeliveryLocation_Changed(object sender, EventArgs e) { 135 137 EvalBestKnownSolution(); 136 138 } -
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWEvaluation.cs
r14185 r17010 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWEvaluator.cs
r14185 r17010 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; 29 29 using HeuristicLab.Problems.VehicleRouting.Variants; … … 31 31 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 32 32 [Item("CVRPTWEvaluator", "Represents a single depot CVRPTW evaluator.")] 33 [Storable Class]33 [StorableType("BB258008-7ECC-488A-BB2A-B38AE0023CFD")] 34 34 public class CVRPTWEvaluator : CVRPEvaluator { 35 35 public ILookupParameter<DoubleValue> TardinessParameter { … … 259 259 260 260 [StorableConstructor] 261 protected CVRPTWEvaluator( bool deserializing) : base(deserializing) { }261 protected CVRPTWEvaluator(StorableConstructorFlag _) : base(_) { } 262 262 263 263 public CVRPTWEvaluator() { -
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWProblemInstance.cs
r14185 r17010 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 36 36 [Item("CVRPTWProblemInstance", "Represents a single depot CVRPTW instance.")] 37 [Storable Class]37 [StorableType("2138BE6C-058E-4003-8578-55E8DE3706C7")] 38 38 public class CVRPTWProblemInstance : CVRPProblemInstance, ITimeWindowedProblemInstance { 39 39 protected IValueParameter<DoubleArray> ReadyTimeParameter { … … 107 107 108 108 [StorableConstructor] 109 protected CVRPTWProblemInstance( bool deserializing) : base(deserializing) { }109 protected CVRPTWProblemInstance(StorableConstructorFlag _) : base(_) { } 110 110 111 111 public CVRPTWProblemInstance() { … … 136 136 137 137 private void AttachEventHandlers() { 138 TardinessPenaltyParameter.ValueChanged += new EventHandler(TardinessPenaltyParameter_ValueChanged); 139 TardinessPenaltyParameter.Value.ValueChanged += new EventHandler(TardinessPenalty_ValueChanged); 140 TimeFactorParameter.ValueChanged += new EventHandler(TimeFactorParameter_ValueChanged); 141 TimeFactorParameter.Value.ValueChanged += new EventHandler(TimeFactor_ValueChanged); 138 ReadyTimeParameter.ValueChanged += ReadyTimeParameter_ValueChanged; 139 ReadyTime.Reset += ReadyTime_Changed; 140 ReadyTime.ItemChanged += ReadyTime_Changed; 141 DueTimeParameter.ValueChanged += DueTimeParameter_ValueChanged; 142 DueTime.Reset += DueTime_Changed; 143 DueTime.ItemChanged += DueTime_Changed; 144 ServiceTimeParameter.ValueChanged += ServiceTimeParameter_ValueChanged; 145 ServiceTime.Reset += ServiceTime_Changed; 146 ServiceTime.ItemChanged += ServiceTime_Changed; 147 TardinessPenaltyParameter.ValueChanged += TardinessPenaltyParameter_ValueChanged; 148 TardinessPenalty.ValueChanged += TardinessPenalty_ValueChanged; 149 TimeFactorParameter.ValueChanged += TimeFactorParameter_ValueChanged; 150 TimeFactor.ValueChanged += TimeFactor_ValueChanged; 142 151 } 143 152 … … 149 158 150 159 #region Event handlers 151 void TardinessPenaltyParameter_ValueChanged(object sender, EventArgs e) { 152 TardinessPenaltyParameter.Value.ValueChanged += new EventHandler(TardinessPenalty_ValueChanged); 153 EvalBestKnownSolution(); 154 } 155 void TardinessPenalty_ValueChanged(object sender, EventArgs e) { 156 EvalBestKnownSolution(); 157 } 158 void TimeFactorParameter_ValueChanged(object sender, EventArgs e) { 159 TimeFactorParameter.Value.ValueChanged += new EventHandler(TimeFactor_ValueChanged); 160 EvalBestKnownSolution(); 161 } 162 void TimeFactor_ValueChanged(object sender, EventArgs e) { 160 private void ReadyTimeParameter_ValueChanged(object sender, EventArgs e) { 161 ReadyTime.Reset += ReadyTime_Changed; 162 ReadyTime.ItemChanged += ReadyTime_Changed; 163 EvalBestKnownSolution(); 164 } 165 private void ReadyTime_Changed(object sender, EventArgs e) { 166 EvalBestKnownSolution(); 167 } 168 private void DueTimeParameter_ValueChanged(object sender, EventArgs e) { 169 DueTime.Reset += DueTime_Changed; 170 DueTime.ItemChanged += DueTime_Changed; 171 EvalBestKnownSolution(); 172 } 173 private void DueTime_Changed(object sender, EventArgs e) { 174 EvalBestKnownSolution(); 175 } 176 private void ServiceTimeParameter_ValueChanged(object sender, EventArgs e) { 177 ServiceTime.Reset += ServiceTime_Changed; 178 ServiceTime.ItemChanged += ServiceTime_Changed; 179 EvalBestKnownSolution(); 180 } 181 private void ServiceTime_Changed(object sender, EventArgs e) { 182 EvalBestKnownSolution(); 183 } 184 private void TardinessPenaltyParameter_ValueChanged(object sender, EventArgs e) { 185 TardinessPenaltyParameter.Value.ValueChanged += TardinessPenalty_ValueChanged; 186 EvalBestKnownSolution(); 187 } 188 private void TardinessPenalty_ValueChanged(object sender, EventArgs e) { 189 EvalBestKnownSolution(); 190 } 191 private void TimeFactorParameter_ValueChanged(object sender, EventArgs e) { 192 TimeFactorParameter.Value.ValueChanged += TimeFactor_ValueChanged; 193 EvalBestKnownSolution(); 194 } 195 private void TimeFactor_ValueChanged(object sender, EventArgs e) { 163 196 EvalBestKnownSolution(); 164 197 }
Note: See TracChangeset
for help on using the changeset viewer.