[13865] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 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 System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using HeuristicLab.Common;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Problems.GeneticProgramming.GlucosePrediction {
|
---|
| 30 | [StorableClass]
|
---|
| 31 | [Item(CurvedInsVariableSymbol.Name, "")]
|
---|
| 32 | public class CurvedInsVariableSymbol : Symbol {
|
---|
| 33 | public new const string Name = "CurvedInsVariableSymbol";
|
---|
| 34 | #region Properties
|
---|
| 35 |
|
---|
| 36 | [Storable]
|
---|
[13867] | 37 | private double minAlpha;
|
---|
| 38 | public double MinAlpha {
|
---|
| 39 | get { return minAlpha; }
|
---|
[13865] | 40 | set {
|
---|
[13867] | 41 | if (value != minAlpha) {
|
---|
| 42 | minAlpha = value;
|
---|
[13865] | 43 | OnChanged(EventArgs.Empty);
|
---|
| 44 | }
|
---|
| 45 | }
|
---|
| 46 | }
|
---|
[13867] | 47 | [Storable]
|
---|
| 48 | private double maxAlpha;
|
---|
| 49 | public double MaxAlpha {
|
---|
| 50 | get { return maxAlpha; }
|
---|
| 51 | set {
|
---|
| 52 | if (value != maxAlpha) {
|
---|
| 53 | maxAlpha = value;
|
---|
| 54 | OnChanged(EventArgs.Empty);
|
---|
| 55 | }
|
---|
| 56 | }
|
---|
| 57 | }
|
---|
[13865] | 58 |
|
---|
| 59 | [Storable]
|
---|
[13867] | 60 | private double minBeta;
|
---|
| 61 | public double MinBeta {
|
---|
| 62 | get { return minBeta; }
|
---|
[13865] | 63 | set {
|
---|
[13867] | 64 | if (value != minBeta) {
|
---|
| 65 | minBeta = value;
|
---|
[13865] | 66 | OnChanged(EventArgs.Empty);
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 | }
|
---|
| 70 |
|
---|
[13867] | 71 | [Storable]
|
---|
| 72 | private double maxBeta;
|
---|
| 73 | public double MaxBeta {
|
---|
| 74 | get { return maxBeta; }
|
---|
| 75 | set {
|
---|
| 76 | if (value != maxBeta) {
|
---|
| 77 | maxBeta = value;
|
---|
| 78 | OnChanged(EventArgs.Empty);
|
---|
| 79 | }
|
---|
| 80 | }
|
---|
| 81 | }
|
---|
| 82 |
|
---|
[13865] | 83 | private const int minimumArity = 0;
|
---|
| 84 | private const int maximumArity = 0;
|
---|
| 85 |
|
---|
| 86 | public override int MinimumArity {
|
---|
| 87 | get { return minimumArity; }
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | public override int MaximumArity {
|
---|
| 91 | get { return maximumArity; }
|
---|
| 92 | }
|
---|
| 93 | #endregion
|
---|
| 94 |
|
---|
| 95 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 96 | private void AfterDeserialization() {
|
---|
| 97 | }
|
---|
| 98 |
|
---|
| 99 | [StorableConstructor]
|
---|
| 100 | protected CurvedInsVariableSymbol(bool deserializing)
|
---|
| 101 | : base(deserializing) {
|
---|
| 102 | }
|
---|
| 103 |
|
---|
| 104 | protected CurvedInsVariableSymbol(CurvedInsVariableSymbol original, Cloner cloner)
|
---|
| 105 | : base(original, cloner) {
|
---|
[13867] | 106 | minAlpha = original.minAlpha;
|
---|
| 107 | maxAlpha = original.maxAlpha;
|
---|
| 108 | minBeta = original.minBeta;
|
---|
| 109 | maxBeta = original.maxBeta;
|
---|
[13865] | 110 | }
|
---|
| 111 |
|
---|
[13867] | 112 | public CurvedInsVariableSymbol(string name, string desc, double minAlpha = 0.001, double maxAlpha = 10, double minBeta = 0.001, double maxBeta = 10)
|
---|
[13865] | 113 | : base(name, desc) {
|
---|
[13867] | 114 | this.minAlpha = minAlpha;
|
---|
| 115 | this.maxAlpha = maxAlpha;
|
---|
| 116 | this.minBeta = minBeta;
|
---|
| 117 | this.maxBeta = maxBeta;
|
---|
[13865] | 118 | }
|
---|
| 119 |
|
---|
| 120 | public override ISymbolicExpressionTreeNode CreateTreeNode() {
|
---|
| 121 | return new CurvedInsVariableTreeNode(this);
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 125 | return new CurvedInsVariableSymbol(this, cloner);
|
---|
| 126 | }
|
---|
| 127 | }
|
---|
| 128 | }
|
---|