- 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.Problems.ExternalEvaluation.GP/3.3/Interpretation/TreeInterpreter.cs
r4117 r4722 22 22 using System; 23 23 using System.Collections.Generic; 24 using HeuristicLab.Common; 24 25 using HeuristicLab.Core; 25 26 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; … … 92 93 private Instruction[] code; 93 94 private int pc; 94 95 95 96 public override bool CanChangeName { 96 97 get { return false; } … … 100 101 } 101 102 102 public TreeInterpreter() 103 : base() { 104 } 103 104 [StorableConstructor] 105 protected TreeInterpreter(bool deserializing) : base(deserializing) { } 106 protected TreeInterpreter(TreeInterpreter original, Cloner cloner) : base(original, cloner) { } 107 public override IDeepCloneable Clone(Cloner cloner) { 108 return new TreeInterpreter(this, cloner); 109 } 110 public TreeInterpreter() : base() { } 105 111 106 112 public void Prepare(SymbolicExpressionTree tree) {
Note: See TracChangeset
for help on using the changeset viewer.