Changeset 8815
- Timestamp:
- 10/16/12 15:57:53 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DynamicVehicleRouting/HeuristicLab.PDPSimulation/3.3/Optimizers/LocalUpdate/BestInsertion.cs
r8670 r8815 74 74 int tours = solution.Tours.Count; 75 75 76 /*for (int i = tours; i < solution.VehicleAssignment.Length; i++)*/ 77 if(tours < solution.VehicleAssignment.Length) { 76 for (int i = tours; i < solution.VehicleAssignment.Length; i++) { 78 77 Tour newTour = new Tour(); 79 78 solution.Tours.Add(newTour);
Note: See TracChangeset
for help on using the changeset viewer.