Changeset 18139
- Timestamp:
- 12/16/21 10:10:21 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/SubFunctionSymbol.cs
r18068 r18139 7 7 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { 8 8 [StorableType("C6C2FBEE-8F4B-4FF2-80F5-D566BE55ED69")] 9 [Item("SubFunction Symbol", "Symbol that represents a sub function.")]9 [Item("SubFunction", "Symbol that represents a sub function.")] 10 10 public class SubFunctionSymbol : Symbol { 11 11 public override int MinimumArity => 0; 12 12 public override int MaximumArity => 1; 13 13 14 public SubFunctionSymbol() : base("SubFunction Symbol", "Symbol that represents a sub function.") { }14 public SubFunctionSymbol() : base("SubFunction", "Symbol that represents a sub function.") { } 15 15 16 16 private SubFunctionSymbol(SubFunctionSymbol original, Cloner cloner) : base(original, cloner) { }
Note: See TracChangeset
for help on using the changeset viewer.