Changeset 4752 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluator.cs
- Timestamp:
- 11/09/10 09:55:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluator.cs
r4520 r4752 33 33 using HeuristicLab.Problems.VehicleRouting.Variants; 34 34 using HeuristicLab.Problems.VehicleRouting.Encodings; 35 using HeuristicLab.Common; 35 36 36 37 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { … … 105 106 Parameters.Add(new LookupParameter<DoubleValue>("Overload", "The overload.")); 106 107 } 108 109 public override IDeepCloneable Clone(Cloner cloner) { 110 return new CVRPEvaluator(this, cloner); 111 } 112 113 protected CVRPEvaluator(CVRPEvaluator original, Cloner cloner) 114 : base(original, cloner) { 115 } 107 116 } 108 117 }
Note: See TracChangeset
for help on using the changeset viewer.