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/Moves/VRPMoveOperator.cs

    r17226 r17698  
    3030  [StorableType("B2A37CCE-3EF6-4648-8A9B-2BCBD4EC93F1")]
    3131  public abstract class VRPMoveOperator : VRPOperator, IVRPMoveOperator {
    32     public ILookupParameter<IVRPEncoding> VRPToursParameter {
    33       get { return (ILookupParameter<IVRPEncoding>)Parameters["VRPTours"]; }
     32    public ILookupParameter<IVRPEncodedSolution> VRPToursParameter {
     33      get { return (ILookupParameter<IVRPEncodedSolution>)Parameters["VRPTours"]; }
    3434    }
    3535
     
    4040
    4141    public VRPMoveOperator() {
    42       Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The VRP tours considered in the move."));
     42      Parameters.Add(new LookupParameter<IVRPEncodedSolution>("VRPTours", "The VRP tours considered in the move."));
    4343    }
    4444
Note: See TracChangeset for help on using the changeset viewer.