Changeset 4692 for branches/CloningRefactoring/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/VRPMoveOperator.cs
- Timestamp:
- 10/29/10 20:36:25 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CloningRefactoring/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/VRPMoveOperator.cs
r4179 r4692 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HeuristicLab.Common; 27 28 28 29 namespace HeuristicLab.Problems.VehicleRouting.Encodings { … … 35 36 get { return (ILookupParameter<IVRPEncoding>)Parameters["VRPTours"]; } 36 37 } 37 38 38 39 #endregion 39 40 40 41 [StorableConstructor] 41 42 protected VRPMoveOperator(bool deserializing) : base(deserializing) { } 42 43 protected VRPMoveOperator(VRPMoveOperator original, Cloner cloner) : base(original, cloner) { } 43 44 public VRPMoveOperator() 44 45 : base() {
Note: See TracChangeset
for help on using the changeset viewer.