Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 13:19:53 (14 years ago)
Author:
mkommend
Message:

Implemented Power symbol for GP (ticket #1374).

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Symbols/Power.cs

    r5287 r5288  
    2626namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols {
    2727  [StorableClass]
    28   [Item("Exponential", "Symbol that represents the exponential function.")]
    29   public sealed class Exponential : Symbol {
     28  [Item("Power", "Symbol that represents the power function.")]
     29  public sealed class Power : Symbol {
    3030    [StorableConstructor]
    31     private Exponential(bool deserializing) : base(deserializing) { }
    32     private Exponential(Exponential original, Cloner cloner) : base(original, cloner) { }
     31    private Power(bool deserializing) : base(deserializing) { }
     32    private Power(Power original, Cloner cloner) : base(original, cloner) { }
    3333    public override IDeepCloneable Clone(Cloner cloner) {
    34       return new Exponential(this, cloner);
     34      return new Power(this, cloner);
    3535    }
    36     public Exponential() : base("Exponential", "Symbol that represents the exponential function.") { }
     36    public Power() : base("Power", "Symbol that represents the power function.") { }
    3737  }
    3838}
Note: See TracChangeset for help on using the changeset viewer.