- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/PathRelinkers/VRPPathRelinker.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Optimization.Operators; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin; 33 33 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 40 40 /// </summary> 41 41 [Item("VRPPathRelinker", "An operator which relinks paths between VRP solutions.")] 42 [Storable Class]42 [StorableType("C0C17982-BC36-4DF9-8C33-2B6F9A19CA53")] 43 43 public sealed class VRPPathRelinker : SingleObjectivePathRelinker, IGeneralVRPOperator, IStochasticOperator { 44 44 #region Parameter properties … … 58 58 59 59 [StorableConstructor] 60 private VRPPathRelinker( bool deserializing) : base(deserializing) { }60 private VRPPathRelinker(StorableConstructorFlag _) : base(_) { } 61 61 private VRPPathRelinker(VRPPathRelinker original, Cloner cloner) : base(original, cloner) { } 62 62 public VRPPathRelinker()
Note: See TracChangeset
for help on using the changeset viewer.