Changeset 14645 for branches/HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin
- Timestamp:
- 02/03/17 14:47:52 (8 years ago)
- Location:
- branches/HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators/GeographicDistanceClusterCreator.cs
r14559 r14645 74 74 // (a) shuffle 75 75 cluster.ShuffleInPlace(random); 76 newTour.Stops.AddRange(cluster);77 76 foreach (var customer in cluster) { 78 77 newTour.Stops.Add(customer + 1); -
branches/HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators/TemporalDistanceClusterCreator.cs
r14559 r14645 73 73 // (a) shuffle 74 74 cluster.ShuffleInPlace(random); 75 newTour.Stops.AddRange(cluster);76 75 foreach (var customer in cluster) { 77 76 newTour.Stops.Add(customer + 1);
Note: See TracChangeset
for help on using the changeset viewer.