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/MultiVRPMoveOperator/MultiVRPMoveTabuMaker.cs

    r17226 r17698  
    5252      get { return (IValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
    5353    }
    54     public ILookupParameter<IVRPEncoding> VRPToursParameter {
    55       get { return (ILookupParameter<IVRPEncoding>)Parameters["VRPTours"]; }
     54    public ILookupParameter<IVRPEncodedSolution> VRPToursParameter {
     55      get { return (ILookupParameter<IVRPEncodedSolution>)Parameters["VRPTours"]; }
    5656    }
    5757    public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter {
     
    7171      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, else if it is a minimization problem."));
    7272
    73       Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The VRP tours considered in the move."));
     73      Parameters.Add(new LookupParameter<IVRPEncodedSolution>("VRPTours", "The VRP tours considered in the move."));
    7474      Parameters.Add(new LookupParameter<IVRPProblemInstance>("ProblemInstance", "The VRP problem instance"));
    7575    }
Note: See TracChangeset for help on using the changeset viewer.