Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/24/20 00:58:42 (4 years ago)
Author:
abeham
Message:

#2521: working on VRP (WIP)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/TourEncoding.cs

    r17226 r17698  
    3030  [Item("TourEncoding", "Represents a base class for tour encodings of VRP solutions.")]
    3131  [StorableType("FC5DBAE6-05D9-4C55-AA85-6E3C2330700F")]
    32   public abstract class TourEncoding : Item, IVRPEncoding {
     32  public abstract class TourEncoding : Item, IVRPEncodedSolution {
    3333    public static new Image StaticItemImage {
    3434      get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; }
     
    117117    }
    118118
    119     public static void ConvertFrom(IVRPEncoding encoding, TourEncoding solution, IVRPProblemInstance problemInstance) {
     119    public static void ConvertFrom(IVRPEncodedSolution encoding, TourEncoding solution, IVRPProblemInstance problemInstance) {
    120120      solution.Tours = new ItemList<Tour>(encoding.GetTours());
    121121      solution.Repair();
Note: See TracChangeset for help on using the changeset viewer.