- Timestamp:
- 01/07/11 11:15:19 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Creators/PushForwardInsertionCreator.cs
r5201 r5230 172 172 routeIndex++; 173 173 174 do{174 while (unroutedList.Count > 0) { 175 175 for (c = 0; c < unroutedList.Count; c++) { 176 176 for (int i = currentRoute + 1; i < route.Count; i++) { … … 207 207 indexOfCustomer = -1; 208 208 customer = -1; 209 } while (unroutedList.Count > 0);209 } 210 210 while (route.Count < problemInstance.Cities.Value + problemInstance.Vehicles.Value) 211 211 route.Add(0);
Note: See TracChangeset
for help on using the changeset viewer.