Changeset 11931 for stable/HeuristicLab.Problems.Instances.VehicleRouting/3.4/IVRPInstanceProvider.cs
- Timestamp:
- 02/06/15 09:24:18 (10 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 11420,11428-11429,11432,11442,11455-11456,11478,11930
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.Instances.VehicleRouting/3.4/IVRPInstanceProvider.cs
r11170 r11931 21 21 22 22 namespace HeuristicLab.Problems.Instances.VehicleRouting { 23 public interface IVRPInstanceProvider {23 public interface IVRPInstanceProvider<TData> { 24 24 bool CanImportData { get; } 25 IVRPData Import(string vrpFile, string tourFile);25 TData Import(string instancePath, string solutionPath); 26 26 27 27 bool CanExportData { get; } 28 void Export( IVRPData instance, string path);28 void Export(TData instance, string path); 29 29 } 30 30 }
Note: See TracChangeset
for help on using the changeset viewer.