Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/08/14 16:21:42 (10 years ago)
Author:
pfleck
Message:

#2229

  • The IVRPData now specifies an optional BestKnownTourVehicleAssignment property. This can be used for solutions where a specific assignment for tours to vehicles is necessary.
  • The VRPInterpreter interpret the new BestKnownTourVehicleAssignment directly as VehicleAssignment in the created PotvinEncoding.
  • Minor refactoring in (I)VRPInstanceProvider.
File:
1 edited

Legend:

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

    r11420 r11428  
    2020#endregion
    2121
     22
    2223namespace HeuristicLab.Problems.Instances.VehicleRouting {
    23   public interface IVRPInstanceProvider<T> {
     24  public interface IVRPInstanceProvider<TData> {
    2425    bool CanImportData { get; }
    25     T Import(string vrpFile, string tourFile);
     26    TData Import(string instancePath, string solutionPath);
    2627
    2728    bool CanExportData { get; }
    28     void Export(T instance, string path);
     29    void Export(TData instance, string path);
    2930  }
    3031}
Note: See TracChangeset for help on using the changeset viewer.