- Timestamp:
- 11/06/10 01:56:04 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/CloningRefactoring (added) merged: 4656-4693,4696-4697,4711-4714,4718-4719
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
/branches/CloningRefactoring/HeuristicLab.Problems.VehicleRouting (added) merged: 4686-4687,4689-4693,4696-4697
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Evaluators/VRPEvaluator.cs
r4352 r4722 20 20 #endregion 21 21 22 using HeuristicLab.Common; 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Data; 24 using HeuristicLab.Operators;25 25 using HeuristicLab.Parameters; 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 82 82 } 83 83 84 [StorableConstructor] 85 private VRPEvaluator(bool deserializing) : base(deserializing) { } 86 private VRPEvaluator(VRPEvaluator original, Cloner cloner) 87 : base(original, cloner) { 88 } 84 89 public VRPEvaluator() 85 90 : base() { … … 98 103 } 99 104 105 public override IDeepCloneable Clone(Cloner cloner) { 106 return new VRPEvaluator(this, cloner); 107 } 108 100 109 private double CalculateFleetUsage() { 101 110 IVRPEncoding vrpSolution = VRPToursParameter.ActualValue;
Note: See TracChangeset
for help on using the changeset viewer.