Changeset 18066 for branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/SubFunctionTreeNode.cs
- Timestamp:
- 10/12/21 09:41:38 (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/SubFunctionTreeNode.cs
r18065 r18066 16 16 17 17 public IEnumerable<string> FunctionArguments { get; set; } = Enumerable.Empty<string>(); 18 19 public SubFunction SubFunction { get; set; } 18 20 #endregion 19 21 … … 24 26 protected SubFunctionTreeNode(StorableConstructorFlag _) : base(_) { } 25 27 26 protected SubFunctionTreeNode(SubFunctionTreeNode original, Cloner cloner) : base(original, cloner) { } 28 protected SubFunctionTreeNode(SubFunctionTreeNode original, Cloner cloner) : base(original, cloner) { 29 this.SubFunction = original.SubFunction; 30 } 27 31 #endregion 28 32
Note: See TracChangeset
for help on using the changeset viewer.