- Timestamp:
- 11/06/10 01:56:04 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/CloningRefactoring (added) merged: 4656-4693,4696-4697,4711-4714,4718-4719
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Creators/UniformRandomRealVectorCreator.cs
r4068 r4722 21 21 22 22 using System; 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; 24 25 using HeuristicLab.Data; … … 33 34 [StorableClass] 34 35 public class UniformRandomRealVectorCreator : RealVectorCreator, IStrategyParameterCreator { 36 [StorableConstructor] 37 protected UniformRandomRealVectorCreator(bool deserializing) : base(deserializing) { } 38 protected UniformRandomRealVectorCreator(UniformRandomRealVectorCreator original, Cloner cloner) : base(original, cloner) { } 39 public UniformRandomRealVectorCreator() : base() { } 40 41 public override IDeepCloneable Clone(Cloner cloner) { 42 return new UniformRandomRealVectorCreator(this, cloner); 43 } 44 35 45 /// <summary> 36 46 /// Generates a new random real vector with the given <paramref name="length"/> and in the interval [min,max).
Note: See TracChangeset
for help on using the changeset viewer.