- Timestamp:
- 11/09/10 09:55:31 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Creators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Creators/MultiVRPSolutionCreator.cs
r4365 r4752 33 33 using HeuristicLab.Problems.VehicleRouting.Variants; 34 34 using System.Collections.Generic; 35 using HeuristicLab.Common; 35 36 36 37 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { … … 60 61 61 62 Parameters.Add(new LookupParameter<IVRPProblemInstance>("ProblemInstance", "The VRP problem instance")); 63 } 64 65 public override IDeepCloneable Clone(Cloner cloner) { 66 return new MultiVRPSolutionCreator(this, cloner); 67 } 68 69 protected MultiVRPSolutionCreator(MultiVRPSolutionCreator original, Cloner cloner) 70 : base(original, cloner) { 62 71 } 63 72 -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Creators/VRPCreator.cs
r4369 r4752 30 30 using HeuristicLab.Parameters; 31 31 using HeuristicLab.Problems.VehicleRouting.Interfaces; 32 using HeuristicLab.Common; 32 33 33 34 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { … … 46 47 Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The VRP tours to be created.")); 47 48 } 49 50 protected VRPCreator(VRPCreator original, Cloner cloner) 51 : base(original, cloner) { 52 } 48 53 } 49 54 }
Note: See TracChangeset
for help on using the changeset viewer.