- Timestamp:
- 10/29/10 18:50:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CloningRefactoring/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/AdditiveMoveGenerator.cs
r4672 r4673 20 20 #endregion 21 21 22 using HeuristicLab.Common; 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Data; … … 26 27 using HeuristicLab.Parameters; 27 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HeuristicLab.Common;29 29 30 30 namespace HeuristicLab.Encodings.RealVectorEncoding { … … 63 63 } 64 64 65 public override IDeepCloneable Clone(Cloner cloner) {66 return new AdditiveMoveGenerator(this, cloner);67 }68 69 65 public override IOperation Apply() { 70 66 RealVector vector = RealVectorParameter.ActualValue;
Note: See TracChangeset
for help on using the changeset viewer.