Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/08/14 16:21:42 (9 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/3.3/Types/VRP/VRPData.cs

    r11285 r11428  
    7878    public int[][] BestKnownTour { get; set; }
    7979    /// <summary>
     80    /// Optional! Specifies the used vehicle for a given tour.
     81    /// </summary>
     82    public int[] BestKnownTourVehicleAssignment { get; set; }
     83    /// <summary>
    8084    /// Optional! The quality of the best-known solution.
    8185    /// </summary>
Note: See TracChangeset for help on using the changeset viewer.