Changeset 17706 for branches/2521_ProblemRefactoring
- Timestamp:
- 08/02/20 06:03:57 (4 years ago)
- 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 35 35 using HeuristicLab.PluginInfrastructure; 36 36 using HeuristicLab.Problems.Instances; 37 using HeuristicLab.Problems.VehicleRouting.Encodings. Alba;37 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin; 38 38 using HeuristicLab.Problems.VehicleRouting.Interfaces; 39 39 using HeuristicLab.Problems.VehicleRouting.Interpreters; … … 74 74 private VehicleRoutingProblem(StorableConstructorFlag _) : base(_) { } 75 75 public VehicleRoutingProblem() 76 : base(new AlbaEncoding()) {76 : base(new PotvinEncoding()) { 77 77 Parameters.Add(new ValueParameter<IVRPProblemInstance>("ProblemInstance", "The VRP problem instance")); 78 78 Parameters.Add(new OptionalValueParameter<VRPSolution>("BestKnownSolution", "The best known solution of this VRP instance."));
Note: See TracChangeset
for help on using the changeset viewer.