Changeset 5510 for branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeNode.cs
- Timestamp:
- 02/17/11 13:51:04 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeNode.cs
r5499 r5510 22 22 using HeuristicLab.Core; 23 23 using System; 24 using HeuristicLab.Common; 24 25 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding { 25 public interface ISymbolicExpressionTreeNode : I Item{26 public interface ISymbolicExpressionTreeNode : IDeepCloneable { 26 27 ISymbolicExpressionTreeGrammar Grammar { get; } 27 28 ISymbolicExpressionTreeNode Parent { get; set; } 28 29 ISymbol Symbol { get; } 29 30 bool HasLocalParameters { get; } … … 37 38 IEnumerable<ISymbolicExpressionTreeNode> IterateNodesPostfix(); 38 39 IEnumerable<ISymbolicExpressionTreeNode> IterateNodesPrefix(); 39 void ForEachNodePostfix(Action< SymbolicExpressionTreeNode> a);40 void ForEachNodePrefix(Action< SymbolicExpressionTreeNode> a);40 void ForEachNodePostfix(Action<ISymbolicExpressionTreeNode> a); 41 void ForEachNodePrefix(Action<ISymbolicExpressionTreeNode> a); 41 42 42 43 IEnumerable<ISymbolicExpressionTreeNode> SubTrees { get; }
Note: See TracChangeset
for help on using the changeset viewer.