Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/03/12 13:41:36 (12 years ago)
Author:
sforsten
Message:

#1782:

  • renamed CanSave to CanExportData and SaveData to ExportData
  • added the same functionality for importing problem instance as we implemented for exporting
  • some special changes had to be made in Problems.Instances.VehicleRouting
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances/3.3/IProblemInstanceProvider.cs

    r8180 r8192  
    3535    IEnumerable<IDataDescriptor> GetDataDescriptors();
    3636    TData LoadData(IDataDescriptor descriptor);
    37     TData LoadData(string path);
    3837
    39     bool CanSaveData { get; }
    40     void SaveData(TData instance, string path);
     38    bool CanImportData { get; }
     39    TData ImportData(string path);
     40
     41    bool CanExportData { get; }
     42    void ExportData(TData instance, string path);
    4143  }
    4244}
Note: See TracChangeset for help on using the changeset viewer.