Changeset 18158 for branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/SubFunctionSymbol.cs
- Timestamp:
- 12/19/21 08:46:31 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/SubFunctionSymbol.cs
r18139 r18158 1 using System.Collections.Generic; 2 using HEAL.Attic; 1 using HEAL.Attic; 3 2 using HeuristicLab.Common; 4 3 using HeuristicLab.Core; … … 8 7 [StorableType("C6C2FBEE-8F4B-4FF2-80F5-D566BE55ED69")] 9 8 [Item("SubFunction", "Symbol that represents a sub function.")] 10 public class SubFunctionSymbol : Symbol {9 public sealed class SubFunctionSymbol : Symbol { 11 10 public override int MinimumArity => 0; 12 11 public override int MaximumArity => 1; … … 17 16 18 17 [StorableConstructor] 19 p ublicSubFunctionSymbol(StorableConstructorFlag _) : base(_) { }18 private SubFunctionSymbol(StorableConstructorFlag _) : base(_) { } 20 19 21 20 public override IDeepCloneable Clone(Cloner cloner) =>
Note: See TracChangeset
for help on using the changeset viewer.