Changeset 153
- Timestamp:
- 04/22/08 17:44:49 (17 years ago)
- Location:
- branches/FunctionsAndStructIdRefactoring/HeuristicLab.Functions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/FunctionsAndStructIdRefactoring/HeuristicLab.Functions/FunctionBase.cs
r147 r153 57 57 } 58 58 59 private static readonly List<IOperator> emptySubOperatorList = new List<IOperator>(); 59 60 public override IList<IOperator> SubOperators { 60 get { return new List<IOperator>(); }61 get { return emptySubOperatorList; } 61 62 } 62 63 -
branches/FunctionsAndStructIdRefactoring/HeuristicLab.Functions/FunctionTree.cs
r147 r153 32 32 33 33 public IList<IFunctionTree> SubTrees { 34 get { return subTrees .AsReadOnly(); }34 get { return subTrees; } 35 35 } 36 36 37 37 public ICollection<IVariable> LocalVariables { 38 get { return localVariables .AsReadOnly(); }38 get { return localVariables; } 39 39 } 40 40
Note: See TracChangeset
for help on using the changeset viewer.