- Timestamp:
- 01/12/11 13:19:53 (14 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Symbols/Power.cs
r5287 r5288 26 26 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols { 27 27 [StorableClass] 28 [Item(" Exponential", "Symbol that represents the exponentialfunction.")]29 public sealed class Exponential: Symbol {28 [Item("Power", "Symbol that represents the power function.")] 29 public sealed class Power : Symbol { 30 30 [StorableConstructor] 31 private Exponential(bool deserializing) : base(deserializing) { }32 private Exponential(Exponentialoriginal, Cloner cloner) : base(original, cloner) { }31 private Power(bool deserializing) : base(deserializing) { } 32 private Power(Power original, Cloner cloner) : base(original, cloner) { } 33 33 public override IDeepCloneable Clone(Cloner cloner) { 34 return new Exponential(this, cloner);34 return new Power(this, cloner); 35 35 } 36 public Exponential() : base("Exponential", "Symbol that represents the exponentialfunction.") { }36 public Power() : base("Power", "Symbol that represents the power function.") { } 37 37 } 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.