Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/19/14 15:52:56 (10 years ago)
Author:
pfleck
Message:

#2225
Fixed unit test for VRP instances.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4/IVRPInstanceProvider.cs

    r11286 r11287  
    2121
    2222namespace HeuristicLab.Problems.Instances.VehicleRouting {
    23   public interface IVRPInstanceProvider<T> where T : IVRPData {
     23  public interface IVRPInstanceProvider {
    2424    bool CanImportData { get; }
    25     T Import(string vrpFile, string tourFile);
     25    IVRPData Import(string vrpFile, string tourFile);
    2626
    2727    bool CanExportData { get; }
    28     void Export(T instance, string path);
     28    void Export(IVRPData instance, string path);
    2929  }
    3030}
Note: See TracChangeset for help on using the changeset viewer.