Changeset 4899 for branches/VRP/HeuristicLab.Problems.VehicleRouting
- Timestamp:
- 11/22/10 10:38:36 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/PermutationEncoding.cs
r4752 r4899 42 42 protected PermutationEncoding(PermutationEncoding original, Cloner cloner) 43 43 : base(original, cloner) { 44 this.ProblemInstance = (IVRPProblemInstance)cloner.Clone(original.ProblemInstance);44 this.ProblemInstance = original.ProblemInstance; 45 45 this.readOnly = original.readOnly; 46 46 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/TourEncoding.cs
r4752 r4899 85 85 : base(original, cloner) { 86 86 this.Tours = (ItemList<Tour>)cloner.Clone(original.Tours); 87 this.ProblemInstance = (IVRPProblemInstance)cloner.Clone(original.ProblemInstance);87 this.ProblemInstance = original.ProblemInstance; 88 88 } 89 89
Note: See TracChangeset
for help on using the changeset viewer.