[3841] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17181] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3841] | 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 |
|
---|
[4722] | 22 | using HeuristicLab.Common;
|
---|
[3841] | 23 | using HeuristicLab.Core;
|
---|
[5532] | 24 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[17097] | 25 | using HEAL.Attic;
|
---|
[5532] | 26 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
[17097] | 27 | [StorableType("8AD33C34-9F5C-4F58-8C4C-25EA7F0A8C97")]
|
---|
[3841] | 28 | [Item("IfThenElse", "Symbol that represents a conditional operator.")]
|
---|
| 29 | public sealed class IfThenElse : Symbol {
|
---|
[6803] | 30 | private const int minimumArity = 3;
|
---|
| 31 | private const int maximumArity = 3;
|
---|
| 32 |
|
---|
| 33 | public override int MinimumArity {
|
---|
| 34 | get { return minimumArity; }
|
---|
| 35 | }
|
---|
| 36 | public override int MaximumArity {
|
---|
| 37 | get { return maximumArity; }
|
---|
| 38 | }
|
---|
| 39 |
|
---|
[4722] | 40 | [StorableConstructor]
|
---|
[17097] | 41 | private IfThenElse(StorableConstructorFlag _) : base(_) { }
|
---|
[4722] | 42 | private IfThenElse(IfThenElse original, Cloner cloner) : base(original, cloner) { }
|
---|
| 43 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 44 | return new IfThenElse(this, cloner);
|
---|
| 45 | }
|
---|
[3993] | 46 | public IfThenElse() : base("IfThenElse", "Symbol that represents a conditional operator.") { }
|
---|
[3841] | 47 | }
|
---|
| 48 | }
|
---|