Changeset 6806 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDRearrange
- Timestamp:
- 09/20/11 12:48:40 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDRearrange/PotvinPDRearrangeMoveMaker.cs
r6773 r6806 72 72 73 73 for (int j = i + 1; j <= stops + 1; j++) { 74 if (positionToAvoid != i || positionToAvoid2 != j ) {74 if (positionToAvoid != i || positionToAvoid2 != j || stops == 0) { 75 75 bool feasible; 76 76 double targetCosts = problemInstance.GetInsertionCosts(tourEval, target, 0, j, out feasible);
Note: See TracChangeset
for help on using the changeset viewer.