- Timestamp:
- 03/05/12 10:15:50 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/TourEncoding.cs
r7203 r7543 128 128 Tour tour = new Tour(); 129 129 for (int i = 0; i < route.Count; i++) { 130 if (route[i] == 0) {130 if (route[i] <= 0) { 131 131 if (tour.Stops.Count > 0) { 132 132 solution.Tours.Add(tour);
Note: See TracChangeset
for help on using the changeset viewer.