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