Changeset 2218 for branches/GP-Refactoring-713/sources/HeuristicLab.GP.Interfaces/3.3/IFunctionTree.cs
- Timestamp:
- 07/31/09 12:31:32 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-Refactoring-713/sources/HeuristicLab.GP.Interfaces/3.3/IFunctionTree.cs
r2210 r2218 26 26 27 27 namespace HeuristicLab.GP.Interfaces { 28 public interface IFunctionTree {28 public interface IFunctionTree : IStorable { 29 29 bool HasLocalParameters { get; } 30 30 IList<IFunctionTree> SubTrees { get; } … … 37 37 void InsertSubTree(int index, IFunctionTree tree); 38 38 void RemoveSubTree(int index); 39 IFunctionTree Clone();40 39 } 41 40 }
Note: See TracChangeset
for help on using the changeset viewer.