Changeset 15201
- Timestamp:
- 07/11/17 15:24:13 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVector.cs
r15181 r15201 45 45 array[i] = elements[i]; 46 46 } 47 public RealVector(RealVector other) 48 : this(other.Length) { 49 Array.Copy(other.array, array, other.Length); 50 } 47 public RealVector(RealVector other) : this(other.array) { } 51 48 52 49 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.