Changeset 4752 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Creators/MultiVRPSolutionCreator.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/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
Note: See TracChangeset
for help on using the changeset viewer.