- Timestamp:
- 10/28/21 14:31:33 (3 years ago)
- Location:
- branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/StructureTemplate
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/StructureTemplate/StructureTemplate.cs
r18071 r18072 38 38 39 39 [Storable] 40 public IReadOnlyDictionary<string, SubFunction> SubFunctions { get; private set; } 40 public IReadOnlyDictionary<string, SubFunction> SubFunctions { get; private set; } = new Dictionary<string, SubFunction>(); 41 41 42 42 [Storable] … … 66 66 protected StructureTemplate(StorableConstructorFlag _) : base(_) { } 67 67 68 protected StructureTemplate(StructureTemplate original, Cloner cloner) { }68 protected StructureTemplate(StructureTemplate original, Cloner cloner) : base(original, cloner) { } 69 69 #endregion 70 70 … … 73 73 new StructureTemplate(this, cloner); 74 74 #endregion 75 76 75 77 76 78 private Dictionary<string, SubFunction> GetSubFunctions() { -
branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/StructureTemplate/SubFunction.cs
r18071 r18072 63 63 private void OnParameterValueChanged(object sender, EventArgs e) => Changed?.Invoke(this, EventArgs.Empty); 64 64 65 protected SubFunction(SubFunction original, Cloner cloner) {65 protected SubFunction(SubFunction original, Cloner cloner) : base(original, cloner) { 66 66 Arguments = original.Arguments; 67 67 }
Note: See TracChangeset
for help on using the changeset viewer.