Changeset 7856
- Timestamp:
- 05/21/12 14:32:52 (13 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/PrinsEncoding.cs
r6838 r7856 36 36 public class PrinsEncoding : PermutationEncoding { 37 37 #region IVRPEncoding Members 38 public override int GetTourIndex(Tour tour) { 39 return 0; 40 } 41 38 42 public override List<Tour> GetTours() { 39 43 List<Tour> result = new List<Tour>(); -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Zhu/ZhuEncoding.cs
r6838 r7856 35 35 public class ZhuEncoding : PermutationEncoding { 36 36 #region IVRPEncoding Members 37 public override int GetTourIndex(Tour tour) { 38 return 0; 39 } 40 37 41 public override List<Tour> GetTours() { 38 42 List<Tour> result = new List<Tour>();
Note: See TracChangeset
for help on using the changeset viewer.