- Timestamp:
- 04/20/10 03:00:00 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVector.cs
r3430 r3431 45 45 IntegerVector clone = new IntegerVector(array); 46 46 cloner.RegisterClonedObject(this, clone); 47 clone.ReadOnlyView = ReadOnlyView;48 47 clone.readOnly = readOnly; 49 48 return clone; -
trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Tests/TestRandom.cs
r3380 r3431 113 113 } 114 114 115 public bool ReadOnlyView {116 get { throw new NotImplementedException(); }117 set { throw new NotImplementedException(); }118 }119 120 115 #pragma warning disable 67 121 116 public event EventHandler ItemImageChanged; 122 public event EventHandler ReadOnlyViewChanged;123 117 public event EventHandler ToStringChanged; 124 118 #pragma warning restore 67
Note: See TracChangeset
for help on using the changeset viewer.