Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/20 18:06:16 (4 years ago)
Author:
abeham
Message:

#2521: working on VRP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/GVR/GVREncoding.cs

    r17706 r17711  
    2626using HeuristicLab.Common;
    2727using HeuristicLab.Core;
    28 using HeuristicLab.Optimization;
    2928using HeuristicLab.PluginInfrastructure;
    3029using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3332  [Item("GVR Encoding", "Represents the genetic vehicle representation encoding for GVR encoded solutions.")]
    3433  [StorableType("9ff9f959-31d2-44e5-8a5e-b122220535c2")]
    35   public class GVREncoding : Encoding, IVRPEncoding {
     34  public class GVREncoding : VRPEncoding {
    3635
    3736    [StorableConstructor]
     
    6059      };
    6160    }
    62     private void DiscoverOperators() {
     61    protected override void DiscoverOperators() {
    6362      var assembly = typeof(IGVROperator).Assembly;
    6463      var discoveredTypes = ApplicationManager.Manager.GetTypes(encodingSpecificOperatorTypes, assembly, true, false, false);
Note: See TracChangeset for help on using the changeset viewer.