Changeset 17714 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins
- Timestamp:
- 08/04/20 07:35:27 (4 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/PrinsEncodedSolution.cs
r17712 r17714 32 32 [Item("PrinsEncodedSolution", "Represents a Prins encoded solution of the VRP. It is implemented as described in Prins, C. (2004). A simple and effective evolutionary algorithm for the vehicle routing problem. Computers & Operations Research, 12:1985-2002.")] 33 33 [StorableType("A0E1EBC1-C0F5-4CD5-9279-1A669C6633CD")] 34 public class PrinsEncodedSolution : General.PermutationEncod ing{34 public class PrinsEncodedSolution : General.PermutationEncodedSolution { 35 35 #region IVRPEncoding Members 36 36 public override int GetTourIndex(Tour tour) { -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/PrinsEncoding.cs
r17711 r17714 31 31 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Prins { 32 32 [Item("Prins Encoding", "Represents the Prins encoding for Prins encoded solutions.")] 33 [StorableType(" 9ff9f959-31d2-44e5-8a5e-b122220535c2")]34 public class PrinsEncoding : VRPEncoding {33 [StorableType("f2482ee3-e6b3-434e-a921-ed130200470f")] 34 public sealed class PrinsEncoding : VRPEncoding { 35 35 36 36 [StorableConstructor]
Note: See TracChangeset
for help on using the changeset viewer.