- Timestamp:
- 11/09/10 09:55:31 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/BestVRPSolutionAnalyzer.cs
r4374 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 BestVRPSolutionAnalyzer(this, cloner); 82 } 83 84 private BestVRPSolutionAnalyzer(BestVRPSolutionAnalyzer original, Cloner cloner) 85 : base(original, cloner) { 86 } 87 79 88 public override IOperation Apply() { 80 89 IVRPProblemInstance problemInstance = ProblemInstanceParameter.ActualValue; -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/Capacitated/BestCapacitatedVRPSolutionAnalyzer.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 { … … 73 74 } 74 75 76 public override IDeepCloneable Clone(Cloner cloner) { 77 return new BestCapacitatedVRPSolutionAnalyzer(this, cloner); 78 } 79 80 private BestCapacitatedVRPSolutionAnalyzer(BestCapacitatedVRPSolutionAnalyzer original, Cloner cloner) 81 : base(original, cloner) { 82 } 83 75 84 public override IOperation Apply() { 76 85 ItemArray<IVRPEncoding> solutions = VRPToursParameter.ActualValue; -
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.