Changeset 4899 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/PermutationEncoding.cs
- Timestamp:
- 11/22/10 10:38:36 (14 years ago)
- File:
-
- 1 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 }
Note: See TracChangeset
for help on using the changeset viewer.