- Timestamp:
- 08/16/10 15:20:29 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces/IVRPEncoding.cs
r4154 r4230 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Problems.VehicleRouting.Encodings; 24 using System.Collections.Generic; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting { 26 27 public interface IVRPEncoding : IItem { 27 ItemList<Tour> Tours { 28 get; 29 } 28 List<Tour> GetTours(); 30 29 } 31 30 }
Note: See TracChangeset
for help on using the changeset viewer.