Changeset 4752 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/TimeWindowed
- Timestamp:
- 11/09/10 09:55:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/TimeWindowed/BestTimeWindowedVRPSolutionAnalyzer.cs
r4454 r4752 29 29 using HeuristicLab.Problems.VehicleRouting.Interfaces; 30 30 using HeuristicLab.Problems.VehicleRouting.Variants; 31 using HeuristicLab.Common; 31 32 32 33 namespace HeuristicLab.Problems.VehicleRouting { … … 77 78 } 78 79 80 public override IDeepCloneable Clone(Cloner cloner) { 81 return new BestTimeWindowedVRPSolutionAnalyzer(this, cloner); 82 } 83 84 private BestTimeWindowedVRPSolutionAnalyzer(BestTimeWindowedVRPSolutionAnalyzer original, Cloner cloner) 85 : base(original, cloner) { 86 } 87 79 88 public override IOperation Apply() { 80 89 ItemArray<IVRPEncoding> solutions = VRPToursParameter.ActualValue;
Note: See TracChangeset
for help on using the changeset viewer.