[3253] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 |
|
---|
[4068] | 22 | using System;
|
---|
[3376] | 23 | using HeuristicLab.Common;
|
---|
[3269] | 24 | using HeuristicLab.Core;
|
---|
[4068] | 25 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 26 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
|
---|
[3269] | 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[3373] | 28 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols {
|
---|
[3269] | 29 | [StorableClass]
|
---|
| 30 | [Item("Constant", "Represents a constant value.")]
|
---|
[3253] | 31 | public sealed class Constant : Symbol {
|
---|
[3269] | 32 | #region Propeties
|
---|
[3485] | 33 | [Storable]
|
---|
[3294] | 34 | private double minValue;
|
---|
| 35 | public double MinValue {
|
---|
| 36 | get { return minValue; }
|
---|
[3824] | 37 | set {
|
---|
| 38 | if (value != minValue) {
|
---|
| 39 | minValue = value;
|
---|
| 40 | OnChanged(EventArgs.Empty);
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
[3269] | 43 | }
|
---|
[3485] | 44 | [Storable]
|
---|
[3294] | 45 | private double maxValue;
|
---|
| 46 | public double MaxValue {
|
---|
| 47 | get { return maxValue; }
|
---|
[3824] | 48 | set {
|
---|
| 49 | if (value != maxValue) {
|
---|
| 50 | maxValue = value;
|
---|
| 51 | OnChanged(EventArgs.Empty);
|
---|
| 52 | }
|
---|
| 53 | }
|
---|
[3269] | 54 | }
|
---|
[3512] | 55 | [Storable]
|
---|
[5275] | 56 | private double manipulatorMu;
|
---|
| 57 | public double ManipulatorMu {
|
---|
| 58 | get { return manipulatorMu; }
|
---|
[3824] | 59 | set {
|
---|
[5275] | 60 | if (value != manipulatorMu) {
|
---|
| 61 | manipulatorMu = value;
|
---|
[3824] | 62 | OnChanged(EventArgs.Empty);
|
---|
| 63 | }
|
---|
| 64 | }
|
---|
[3512] | 65 | }
|
---|
| 66 | [Storable]
|
---|
| 67 | private double manipulatorSigma;
|
---|
| 68 | public double ManipulatorSigma {
|
---|
| 69 | get { return manipulatorSigma; }
|
---|
| 70 | set {
|
---|
| 71 | if (value < 0) throw new ArgumentException();
|
---|
[3824] | 72 | if (value != manipulatorSigma) {
|
---|
| 73 | manipulatorSigma = value;
|
---|
| 74 | OnChanged(EventArgs.Empty);
|
---|
| 75 | }
|
---|
[3512] | 76 | }
|
---|
| 77 | }
|
---|
[3269] | 78 | #endregion
|
---|
[5275] | 79 | [StorableConstructor]
|
---|
| 80 | private Constant(bool deserializing) : base(deserializing) { }
|
---|
| 81 | private Constant(Constant original, Cloner cloner)
|
---|
| 82 | : base(original, cloner) {
|
---|
| 83 | minValue = original.minValue;
|
---|
| 84 | maxValue = original.maxValue;
|
---|
| 85 | manipulatorMu = original.manipulatorMu;
|
---|
| 86 | manipulatorSigma = original.manipulatorSigma;
|
---|
| 87 | }
|
---|
[3269] | 88 | public Constant()
|
---|
[3993] | 89 | : base("Constant", "Represents a constant value.") {
|
---|
[5275] | 90 | manipulatorMu = 0.0;
|
---|
[3512] | 91 | manipulatorSigma = 1.0;
|
---|
| 92 | minValue = -20.0;
|
---|
| 93 | maxValue = 20.0;
|
---|
[3269] | 94 | }
|
---|
| 95 |
|
---|
[3253] | 96 | public override SymbolicExpressionTreeNode CreateTreeNode() {
|
---|
| 97 | return new ConstantTreeNode(this);
|
---|
| 98 | }
|
---|
[3485] | 99 |
|
---|
| 100 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[5275] | 101 | return new Constant(this, cloner);
|
---|
[3485] | 102 | }
|
---|
[3253] | 103 | }
|
---|
| 104 | }
|
---|