[16375] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[16375] | 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;
|
---|
[16655] | 25 | using HEAL.Attic;
|
---|
| 26 |
|
---|
[16375] | 27 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
[17434] | 28 | [Item("HyperbolicSineIntegral", "Symbol that represents the hyperbolic sine integral.")]
|
---|
[16655] | 29 | [StorableType("32F7D410-066A-4ABF-81BB-9CD5A49C7B17")]
|
---|
[16375] | 30 | public sealed class HyperbolicTangent : Symbol {
|
---|
| 31 | private const int minimumArity = 1;
|
---|
| 32 | private const int maximumArity = 1;
|
---|
| 33 |
|
---|
| 34 | public override int MinimumArity {
|
---|
| 35 | get { return minimumArity; }
|
---|
| 36 | }
|
---|
| 37 | public override int MaximumArity {
|
---|
| 38 | get { return maximumArity; }
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | [StorableConstructor]
|
---|
[16655] | 42 | private HyperbolicTangent(StorableConstructorFlag _) : base(_) { }
|
---|
[16375] | 43 | private HyperbolicTangent(HyperbolicTangent original, Cloner cloner) : base(original, cloner) { }
|
---|
| 44 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 45 | return new HyperbolicTangent(this, cloner);
|
---|
| 46 | }
|
---|
| 47 | public HyperbolicTangent() : base("HyperbolicTangent", "Symbol that represents the hyperbolic tanh().") { }
|
---|
| 48 | }
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 |
|
---|