Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/13/21 10:25:35 (2 years ago)
Author:
gkronber
Message:

#3140: made several more changes while reviewing the branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3140_NumberSymbol/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/Constant.cs

    r18112 r18114  
    2727namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
    2828  [StorableType("44E03792-5E65-4C70-99B2-7849B8927E28")]
    29   [Item("Constant", "Represents a constant number.")]
    30   public sealed class Constant : Symbol, INumericSymbol{
     29  [Item("Constant", "Represents a real-valued constant.")]
     30  public sealed class Constant : Symbol, INumericSymbol {
    3131    private const int minimumArity = 0;
    3232    private const int maximumArity = 0;
     
    4343    }
    4444
    45     public Constant() : base("Constant", "Represents a constant number.") {}
     45    public Constant() : base("Constant", "Represents a real-valued constant.") {}
    4646
    4747    public override ISymbolicExpressionTreeNode CreateTreeNode() {
Note: See TracChangeset for help on using the changeset viewer.