Changeset 5510 for branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces
- Timestamp:
- 02/17/11 13:51:04 (14 years ago)
- Location:
- branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbol.cs
r5499 r5510 25 25 public interface ISymbol : INamedItem { 26 26 ISymbolicExpressionTreeNode CreateTreeNode(); 27 double InitialFrequency ;27 double InitialFrequency { get; } 28 28 } 29 29 } -
branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTree.cs
r5499 r5510 25 25 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding { 26 26 public interface ISymbolicExpressionTree : IItem { 27 ISymbolicExpressionTreeNode Root { get; }27 ISymbolicExpressionTreeNode Root { get; set; } 28 28 int Size { get; } 29 29 int Height { get; } -
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; } -
branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/Operators/ISymbolicExpressionTreeManipulator.cs
r5494 r5510 28 28 /// </summary> 29 29 public interface ISymbolicExpressionTreeManipulator : ISymbolicExpressionTreeOperator, IManipulator { 30 ILookupParameter< SymbolicExpressionTree> SymbolicExpressionTreeParameter { get; }30 ILookupParameter<ISymbolicExpressionTree> SymbolicExpressionTreeParameter { get; } 31 31 } 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.