Free cookie consent management tool by TermsFeed Policy Generator

Changeset 17706


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

#2521: working on VRP

Location:
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4
Files:
5 added
1 edited

Legend:

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

    r17704 r17706  
    3535using HeuristicLab.PluginInfrastructure;
    3636using HeuristicLab.Problems.Instances;
    37 using HeuristicLab.Problems.VehicleRouting.Encodings.Alba;
     37using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
    3838using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3939using HeuristicLab.Problems.VehicleRouting.Interpreters;
     
    7474    private VehicleRoutingProblem(StorableConstructorFlag _) : base(_) { }
    7575    public VehicleRoutingProblem()
    76       : base(new AlbaEncoding()) {
     76      : base(new PotvinEncoding()) {
    7777      Parameters.Add(new ValueParameter<IVRPProblemInstance>("ProblemInstance", "The VRP problem instance"));
    7878      Parameters.Add(new OptionalValueParameter<VRPSolution>("BestKnownSolution", "The best known solution of this VRP instance."));
Note: See TracChangeset for help on using the changeset viewer.