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/Interfaces/IVRPEncoding.cs

    r17226 r17698  
    2020#endregion
    2121
    22 using System.Collections.Generic;
    23 using HeuristicLab.Core;
    2422using HEAL.Attic;
     23using HeuristicLab.Optimization;
     24using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2525
    26 namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
    27   [StorableType("A8B95552-3A3D-43B3-95C3-B04602AEACF5")]
    28   public interface IVRPEncoding : IItem {
    29     List<Tour> GetTours();
    30     int GetTourIndex(Tour tour);
    31     int GetVehicleAssignment(int tour);
    32   }
     26namespace HeuristicLab.Problems.VehicleRouting {
     27
     28  [StorableType("b6674651-cc95-48d8-a2c3-83ee9325def3")]
     29  public interface IVRPEncoding : IEncoding { }
     30
     31  [StorableType("7d010ab3-2e01-4383-bb6c-7c47ef9d803f")]
     32  public interface IVRPEncoding<T> : IVRPEncoding, IEncoding<T> where T : class, IVRPEncodedSolution { }
    3333}
Note: See TracChangeset for help on using the changeset viewer.