[16083] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[16083] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using HeuristicLab.Common;
|
---|
| 23 | using HeuristicLab.Core;
|
---|
| 24 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[16565] | 25 | using HEAL.Attic;
|
---|
[16083] | 26 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
[16565] | 27 | [StorableType("1BFD8CB7-7377-4130-9903-1E9A76349285")]
|
---|
[16360] | 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" +
|
---|
[16365] | 30 | " in Genetic Programming. IEEE Transactions on Evolutionary Computation, Vol. 17, No. 1, February 2013, pp. 146 -- 152")]
|
---|
[16360] | 31 | public sealed class AnalyticQuotient : Symbol {
|
---|
[16083] | 32 | private const int minimumArity = 2;
|
---|
| 33 | private const int maximumArity = 2;
|
---|
| 34 |
|
---|
| 35 | public override int MinimumArity {
|
---|
| 36 | get { return minimumArity; }
|
---|
| 37 | }
|
---|
| 38 | public override int MaximumArity {
|
---|
| 39 | get { return maximumArity; }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | [StorableConstructor]
|
---|
[16565] | 43 | private AnalyticQuotient(StorableConstructorFlag _) : base(_) { }
|
---|
[16360] | 44 | private AnalyticQuotient(AnalyticQuotient original, Cloner cloner) : base(original, cloner) { }
|
---|
[16083] | 45 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[16360] | 46 | return new AnalyticQuotient(this, cloner);
|
---|
[16083] | 47 | }
|
---|
[16362] | 48 | public AnalyticQuotient() : base("AnalyticQuotient", "The analytic quotient function aq(a,b) = a / sqrt(b²+1) can be used as an " +
|
---|
[16360] | 49 | "alternative to protected division. See H. Drieberg and P. Rocket, The Use of an Analytic Quotient Operator" +
|
---|
[16365] | 50 | " in Genetic Programming. IEEE Transactions on Evolutionary Computation, Vol. 17, No. 1, February 2013, pp. 146 -- 152") { }
|
---|
[16083] | 51 | }
|
---|
| 52 | }
|
---|