Changeset 6856
- Timestamp:
- 09/30/11 13:51:01 (13 years ago)
- Location:
- branches/VRP
- Files:
-
- 5 added
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting.Views/3.4/HeuristicLab.Problems.VehicleRouting.Views-3.4.csproj
r6854 r6856 112 112 </ItemGroup> 113 113 <ItemGroup> 114 <Compile Include="MDCVRPPDTWView.cs"> 115 <SubType>UserControl</SubType> 116 </Compile> 117 <Compile Include="MDCVRPPDTWView.Designer.cs"> 118 <DependentUpon>MDCVRPPDTWView.cs</DependentUpon> 119 </Compile> 114 120 <Compile Include="MDCVRPTWView.cs"> 115 121 <SubType>UserControl</SubType> -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/ExtendedPotvin/Creators/IterativeInsertionCreator.cs
r6851 r6856 113 113 114 114 if (pdp != null) { 115 stopIdx = result.FindBestInsertionPlace(currentTour, pdp. PickupDeliveryLocation[customers[index]]);116 currentTour.Stops.Insert(stopIdx, pdp. PickupDeliveryLocation[customers[index]]);115 stopIdx = result.FindBestInsertionPlace(currentTour, pdp.GetPickupDeliveryLocation(customers[index])); 116 currentTour.Stops.Insert(stopIdx, pdp.GetPickupDeliveryLocation(customers[index])); 117 117 } 118 118 … … 122 122 currentTour.Stops.Remove(customers[index]); 123 123 if (pdp != null) 124 currentTour.Stops.Remove(pdp. PickupDeliveryLocation[customers[index]]);124 currentTour.Stops.Remove(pdp.GetPickupDeliveryLocation(customers[index])); 125 125 126 126 if (currentTour.Stops.Count == 0) … … 131 131 currentTour.Stops.Add(customers[index]); 132 132 if (pdp != null) { 133 currentTour.Stops.Add(pdp. PickupDeliveryLocation[customers[index]]);133 currentTour.Stops.Add(pdp.GetPickupDeliveryLocation(customers[index])); 134 134 } 135 135 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/ExtendedPotvin/Creators/PushForwardInsertionCreator.cs
r6854 r6856 213 213 214 214 if (pdp != null) { 215 tour.Stops.Add(pdp. PickupDeliveryLocation[unroutedList[0]]);215 tour.Stops.Add(pdp.GetPickupDeliveryLocation(unroutedList[0])); 216 216 } 217 217 … … 234 234 bool feasible; 235 235 cost = tourCost + 236 problemInstance.GetInsertionCosts(eval, result, pdp. PickupDeliveryLocation[unroutedList[c]], 0, j, out feasible);236 problemInstance.GetInsertionCosts(eval, result, pdp.GetPickupDeliveryLocation(unroutedList[c]), 0, j, out feasible); 237 237 if (cost < minimumCost && feasible) { 238 238 minimumCost = cost; … … 260 260 tour.Stops.Insert(indexOfMinimumCost, unroutedList[indexOfCustomer]); 261 261 if (pdp != null) { 262 tour.Stops.Insert(indexOfMinimumCost2, pdp. PickupDeliveryLocation[unroutedList[indexOfCustomer]]);262 tour.Stops.Insert(indexOfMinimumCost2, pdp.GetPickupDeliveryLocation(unroutedList[indexOfCustomer])); 263 263 } 264 264 … … 275 275 tour.Stops.Add(unroutedList[0]); 276 276 if (pdp != null) { 277 tour.Stops.Add(pdp. PickupDeliveryLocation[unroutedList[0]]);277 tour.Stops.Add(pdp.GetPickupDeliveryLocation(unroutedList[0])); 278 278 } 279 279 -
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 -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDExchange/PotvinPDExchangeExhaustiveMoveGenerator.cs
r6851 r6856 67 67 if (pdp == null || pdp.GetDemand(city2) >= 0) { 68 68 bool valid = pdp == null || 69 (pdp. PickupDeliveryLocation[city2] != pdp.PickupDeliveryLocation[city1]&&70 pdp. PickupDeliveryLocation[city2]!= city1 &&71 pdp. PickupDeliveryLocation[city1]!= city2);69 (pdp.GetPickupDeliveryLocation(city2) != pdp.GetPickupDeliveryLocation(city1) && 70 pdp.GetPickupDeliveryLocation(city2) != city1 && 71 pdp.GetPickupDeliveryLocation(city1) != city2); 72 72 73 73 if (valid) { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDExchange/PotvinPDExchangeMoveMaker.cs
r6773 r6856 68 68 69 69 if (problemInstance is IPickupAndDeliveryProblemInstance) { 70 IntArray pickupLocation = 71 (problemInstance as IPickupAndDeliveryProblemInstance).PickupDeliveryLocation; 70 IPickupAndDeliveryProblemInstance pdp = problemInstance as IPickupAndDeliveryProblemInstance; 72 71 73 int location = p ickupLocation[move.City];72 int location = pdp.GetPickupDeliveryLocation(move.City); 74 73 Tour oldTour2 = solution.Tours.Find(t => t.Stops.Contains(location)); 75 74 oldTour2.Stops.Remove(location); 76 75 77 location = p ickupLocation[move.Replaced];76 location = pdp.GetPickupDeliveryLocation(move.Replaced); 78 77 oldTour2 = solution.Tours.Find(t => t.Stops.Contains(location)); 79 78 … … 81 80 tour.Stops.Remove(move.Replaced); 82 81 83 PotvinPDRearrangeMoveMaker.InsertPair(solution, tour, move.City, p ickupLocation[move.City], problemInstance);84 PotvinPDRearrangeMoveMaker.InsertPair(solution, oldTour, move.Replaced, p ickupLocation[move.Replaced], problemInstance);82 PotvinPDRearrangeMoveMaker.InsertPair(solution, tour, move.City, pdp.GetPickupDeliveryLocation(move.City), problemInstance); 83 PotvinPDRearrangeMoveMaker.InsertPair(solution, oldTour, move.Replaced, pdp.GetPickupDeliveryLocation(move.Replaced), problemInstance); 85 84 } else { 86 85 tour.Stops.Remove(move.Replaced); -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDExchange/PotvinPDExchangeSingleMoveGenerator.cs
r6851 r6856 85 85 if (pdp == null || 86 86 (pdp.GetDemand(stop) >= 0 && 87 pdp.PickupDeliveryLocation[stop] != pdp.PickupDeliveryLocation[city]&&88 pdp.PickupDeliveryLocation[stop]!= city &&89 pdp.PickupDeliveryLocation[city]!= stop))87 pdp.GetPickupDeliveryLocation(stop) != pdp.GetPickupDeliveryLocation(city) && 88 pdp.GetPickupDeliveryLocation(stop) != city && 89 pdp.GetPickupDeliveryLocation(city) != stop)) 90 90 tourCities.Add(stop); 91 91 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDRearrange/PotvinPDRearrangeMoveMaker.cs
r6851 r6856 97 97 IPickupAndDeliveryProblemInstance pdp = problemInstance as IPickupAndDeliveryProblemInstance; 98 98 if (pdp != null) { 99 int location = pdp. PickupDeliveryLocation[move.City];99 int location = pdp.GetPickupDeliveryLocation(move.City); 100 100 Tour tour2 = solution.Tours.Find(t => t.Stops.Contains(location)); 101 101 int position2 = tour2.Stops.IndexOf(location); -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDShift/PotvinPDShiftMoveMaker.cs
r6773 r6856 68 68 69 69 if (problemInstance is IPickupAndDeliveryProblemInstance) { 70 IntArray pickupLocation = 71 (problemInstance as IPickupAndDeliveryProblemInstance).PickupDeliveryLocation; 72 73 int location = pickupLocation[move.City]; 70 IPickupAndDeliveryProblemInstance pdp = problemInstance as IPickupAndDeliveryProblemInstance; 71 72 int location = pdp.GetPickupDeliveryLocation(move.City); 74 73 Tour oldTour2 = solution.Tours.Find(t => t.Stops.Contains(location)); 75 74 oldTour2.Stops.Remove(location); 76 75 77 PotvinPDRearrangeMoveMaker.InsertPair(solution, tour, move.City, pickupLocation[move.City], problemInstance);76 PotvinPDRearrangeMoveMaker.InsertPair(solution, tour, move.City, location, problemInstance); 78 77 } else { 79 78 int place = solution.FindBestInsertionPlace(tour, move.City); -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/HeuristicLab.Problems.VehicleRouting-3.4.csproj
r6854 r6856 301 301 <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPEvaluator.cs" /> 302 302 <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPProblemInstance.cs" /> 303 <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPPDTW\MDCVRPPDTWEvaluator.cs" /> 304 <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPPDTW\MDCVRPPDTWProblemInstance.cs" /> 303 305 <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPTWEvaluator.cs" /> 304 306 <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPTWProblemInstance.cs" /> -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWProblemInstance.cs
r6790 r6856 81 81 } 82 82 } 83 84 public int GetPickupDeliveryLocation(int city) { 85 return PickupDeliveryLocation[city]; 86 } 83 87 84 88 [StorableConstructor] -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/PickupAndDelivery/IPickupAndDeliveryProblemInstance.cs
r6711 r6856 31 31 IntArray PickupDeliveryLocation { get; } 32 32 DoubleValue PickupViolationPenalty { get; set; } 33 34 int GetPickupDeliveryLocation(int city); 33 35 } 34 36 }
Note: See TracChangeset
for help on using the changeset viewer.