- Timestamp:
- 10/29/10 20:30:20 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CloningRefactoring/HeuristicLab.Problems.VehicleRouting/3.3/Evaluators/VRPEvaluator.cs
r4352 r4690 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 27 using HeuristicLab.Problems.VehicleRouting.Encodings; 28 using HeuristicLab.Common; 28 29 29 30 namespace HeuristicLab.Problems.VehicleRouting { … … 82 83 } 83 84 85 [StorableConstructor] 86 private VRPEvaluator(bool deserializing) : base(deserializing) { } 87 private VRPEvaluator(VRPEvaluator original, Cloner cloner) 88 : base(original, cloner) { 89 } 84 90 public VRPEvaluator() 85 91 : base() { … … 98 104 } 99 105 106 public override IDeepCloneable Clone(Cloner cloner) { 107 return new VRPEvaluator(this, cloner); 108 } 109 100 110 private double CalculateFleetUsage() { 101 111 IVRPEncoding vrpSolution = VRPToursParameter.ActualValue;
Note: See TracChangeset
for help on using the changeset viewer.