Changeset 17698 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators
- Timestamp:
- 07/24/20 00:58:42 (4 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators/IterativeInsertionCreator.cs
r17226 r17698 81 81 } 82 82 83 public static PotvinEncod ingCreateSolution(IVRPProblemInstance instance, IRandom random, bool adhereTimeWindows) {84 PotvinEncod ing result = new PotvinEncoding(instance);83 public static PotvinEncodedSolution CreateSolution(IVRPProblemInstance instance, IRandom random, bool adhereTimeWindows) { 84 PotvinEncodedSolution result = new PotvinEncodedSolution(instance); 85 85 86 86 IPickupAndDeliveryProblemInstance pdp = instance as IPickupAndDeliveryProblemInstance; -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators/PushForwardInsertionCreator.cs
r17226 r17698 194 194 } 195 195 196 public static PotvinEncod ingCreateSolution(IVRPProblemInstance problemInstance, IRandom random,196 public static PotvinEncodedSolution CreateSolution(IVRPProblemInstance problemInstance, IRandom random, 197 197 double alphaValue = 0.7, double betaValue = 0.1, double gammaValue = 0.2, 198 198 double alphaVariance = 0.5, double betaVariance = 0.07, double gammaVariance = 0.14) { 199 PotvinEncod ing result = new PotvinEncoding(problemInstance);199 PotvinEncodedSolution result = new PotvinEncodedSolution(problemInstance); 200 200 201 201 IPickupAndDeliveryProblemInstance pdp = problemInstance as IPickupAndDeliveryProblemInstance;
Note: See TracChangeset
for help on using the changeset viewer.