- Timestamp:
- 09/27/11 13:29:56 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Zhu/ZhuEncoding.cs
r4752 r6838 43 43 int city = this[i] + 1; 44 44 newTour.Stops.Add(city); 45 if (!ProblemInstance. Feasible(newTour)) {45 if (!ProblemInstance.TourFeasible(newTour, this)) { 46 46 newTour.Stops.Remove(city); 47 47 if (newTour.Stops.Count > 0)
Note: See TracChangeset
for help on using the changeset viewer.