- Timestamp:
- 12/11/18 10:16:56 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/AnalyticalQuotient.cs
r16356 r16360 26 26 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { 27 27 [StorableClass] 28 [Item("Analytical Quotient", "TODO")] 29 public sealed class AnalyticalQuotient : Symbol { 28 [Item("Analytic Quotient", "The analytic quotient function aq(a,b) = a / sqrt(b²+1) can be used as an " + 29 "alternative to protected division. See H. Drieberg and P. Rocket, The Use of an Analytic Quotient Operator" + 30 " in Genetic Programming. IEEE Transactions on Evolutionary Computation, Vol. 17, No. 1, February 2013, pp 146 -- 152")] 31 public sealed class AnalyticQuotient : Symbol { 30 32 private const int minimumArity = 2; 31 33 private const int maximumArity = 2; … … 39 41 40 42 [StorableConstructor] 41 private Analytic alQuotient(bool deserializing) : base(deserializing) { }42 private Analytic alQuotient(AnalyticalQuotient original, Cloner cloner) : base(original, cloner) { }43 private AnalyticQuotient(bool deserializing) : base(deserializing) { } 44 private AnalyticQuotient(AnalyticQuotient original, Cloner cloner) : base(original, cloner) { } 43 45 public override IDeepCloneable Clone(Cloner cloner) { 44 return new Analytic alQuotient(this, cloner);46 return new AnalyticQuotient(this, cloner); 45 47 } 46 public AnalyticalQuotient() : base("AnalyticalQuotient", "TODO") { } 48 public AnalyticQuotient() : base("AnalyticalQuotient", "The analytic quotient function aq(a,b) = a / sqrt(b²+1) can be used as an " + 49 "alternative to protected division. See H. Drieberg and P. Rocket, The Use of an Analytic Quotient Operator" + 50 " in Genetic Programming. IEEE Transactions on Evolutionary Computation, Vol. 17, No. 1, February 2013, pp 146 -- 152") { } 47 51 } 48 52 }
Note: See TracChangeset
for help on using the changeset viewer.