Changeset 3431 for trunk/sources/HeuristicLab.Encodings.PermutationEncoding
- Timestamp:
- 04/20/10 03:00:00 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Permutation.cs
r3430 r3431 66 66 Permutation clone = new Permutation(permutationType, array); 67 67 cloner.RegisterClonedObject(this, clone); 68 clone.ReadOnlyView = ReadOnlyView;69 68 clone.readOnly = readOnly; 70 69 return clone; -
trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/PermutationType.cs
r3376 r3431 35 35 PermutationType clone = new PermutationType(value); 36 36 cloner.RegisterClonedObject(this, clone); 37 clone.ReadOnlyView = ReadOnlyView;38 37 return clone; 39 38 } -
trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Tests/Random.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.