Changeset 6856 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Manipulators
- Timestamp:
- 09/30/11 13:51:01 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Manipulators/PotvinCustomerRelocationManipulator.cs
r6854 r6856 68 68 int stop = route1.Stops[i]; 69 69 if (ProblemInstance.GetDemand(stop) < 0) { 70 int source = pdp. PickupDeliveryLocation[stop];70 int source = pdp.GetPickupDeliveryLocation(stop); 71 71 72 72 if (!visited.ContainsKey(source)) … … 81 81 deliveryViolations[random.Next(deliveryViolations.Count)]; 82 82 83 int source = pdp. PickupDeliveryLocation[selected];83 int source = pdp.GetPickupDeliveryLocation(selected); 84 84 85 85 //find route of source
Note: See TracChangeset
for help on using the changeset viewer.