Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/25/20 01:23:08 (4 years ago)
Author:
abeham
Message:

#2521: Made encodings non-generic classes (the TEncodedSolution type parameter is not actually used), this will make it considerably easier to port the VRP to the new architecture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEncoding.cs

    r17698 r17699  
    2222using HEAL.Attic;
    2323using HeuristicLab.Optimization;
    24 using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2524
    2625namespace HeuristicLab.Problems.VehicleRouting {
     
    2827  [StorableType("b6674651-cc95-48d8-a2c3-83ee9325def3")]
    2928  public interface IVRPEncoding : IEncoding { }
    30 
    31   [StorableType("7d010ab3-2e01-4383-bb6c-7c47ef9d803f")]
    32   public interface IVRPEncoding<T> : IVRPEncoding, IEncoding<T> where T : class, IVRPEncodedSolution { }
    3329}
Note: See TracChangeset for help on using the changeset viewer.