- Timestamp:
- 12/03/08 07:14:04 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CloningRefactorBranch/HeuristicLab.GP.StructureIdentification/Constant.cs
r656 r890 57 57 } 58 58 59 public Constant(Constant original) : this(original, new Dictionary<Guid, object>()) { } 60 private Constant(Constant original, IDictionary<Guid, object> clonedObjects) 61 : base(original, clonedObjects) { } 62 59 63 private void SetupInitialization() { 60 64 // initialization operator … … 90 94 AddVariable(new HeuristicLab.Core.Variable(MANIPULATION, combinedOp)); 91 95 } 96 97 public override object Clone(IDictionary<Guid, object> clonedObjects) { 98 return new Constant(this, clonedObjects); 99 } 92 100 } 93 101 }
Note: See TracChangeset
for help on using the changeset viewer.