Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Zhu/Manipulators
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Zhu/Manipulators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Zhu/Manipulators/ZhuManipulator.cs
r16453 r16462 24 24 using HeuristicLab.Optimization; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 using HeuristicLab.Problems.VehicleRouting.Encodings.General; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 30 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Zhu { 31 31 [Item("ZhuManipulator", "An operator which manipulates a VRP representation.")] 32 [Storable Class]32 [StorableType("DC8B774D-4D51-4439-90BC-9533CACF74FD")] 33 33 public abstract class ZhuManipulator : VRPManipulator, IStochasticOperator, IZhuOperator { 34 34 public ILookupParameter<IRandom> RandomParameter { … … 37 37 38 38 [StorableConstructor] 39 protected ZhuManipulator( bool deserializing) : base(deserializing) { }39 protected ZhuManipulator(StorableConstructorFlag _) : base(_) { } 40 40 41 41 public ZhuManipulator() -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Zhu/Manipulators/ZhuPermutationManipulator.cs
r16453 r16462 24 24 using HeuristicLab.Encodings.PermutationEncoding; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Zhu { 29 29 [Item("ZhuPermutationManipulator", "An operator which manipulates a VRP representation by using a standard permutation manipulator. It is implemented as described in Zhu, K.Q. (2000). A New Genetic Algorithm For VRPTW. Proceedings of the International Conference on Artificial Intelligence.")] 30 [Storable Class]30 [StorableType("2D0168F4-40E8-4E54-AEAD-E8CEAE355AEB")] 31 31 public sealed class ZhuPermutationManipulator : ZhuManipulator { 32 32 public IValueLookupParameter<IPermutationManipulator> InnerManipulatorParameter { … … 35 35 36 36 [StorableConstructor] 37 private ZhuPermutationManipulator( bool deserializing) : base(deserializing) { }37 private ZhuPermutationManipulator(StorableConstructorFlag _) : base(_) { } 38 38 39 39 public ZhuPermutationManipulator()
Note: See TracChangeset
for help on using the changeset viewer.