Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/PathRelinkers
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/PathRelinkers/VRPPathRelinker.cs
r16453 r16462 29 29 using HeuristicLab.Optimization.Operators; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Fossil; 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.