Changeset 4682 for branches/CloningRefactoring/HeuristicLab.Problems.ExternalEvaluation.GP/3.3/Interpretation
- Timestamp:
- 10/29/10 19:47:39 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CloningRefactoring/HeuristicLab.Problems.ExternalEvaluation.GP/3.3/Interpretation/TreeInterpreter.cs
r4117 r4682 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.