[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[3269] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2] | 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.Core;
|
---|
| 23 | using HeuristicLab.Data;
|
---|
[3269] | 24 | using HeuristicLab.Operators;
|
---|
| 25 | using HeuristicLab.Parameters;
|
---|
[4068] | 26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[2] | 27 |
|
---|
| 28 | namespace HeuristicLab.Random {
|
---|
[1153] | 29 | /// <summary>
|
---|
| 30 | /// Normally distributed random number generator.
|
---|
| 31 | /// </summary>
|
---|
[3269] | 32 | [StorableClass]
|
---|
| 33 | [Item("NormalRandomizer", "Initializes the value of variable 'Value' to a random value normally distributed with parameters 'Mu' and 'Sigma'")]
|
---|
| 34 | public class NormalRandomizer : SingleSuccessorOperator {
|
---|
| 35 | #region parameter properties
|
---|
| 36 | public ILookupParameter<IRandom> RandomParameter {
|
---|
| 37 | get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
|
---|
[2] | 38 | }
|
---|
[3269] | 39 | public IValueLookupParameter<DoubleValue> MuParameter {
|
---|
| 40 | get { return (IValueLookupParameter<DoubleValue>)Parameters["Mu"]; }
|
---|
[426] | 41 | }
|
---|
[3269] | 42 | public IValueLookupParameter<DoubleValue> SigmaParameter {
|
---|
| 43 | get { return (IValueLookupParameter<DoubleValue>)Parameters["Sigma"]; }
|
---|
[426] | 44 | }
|
---|
[3269] | 45 | public ILookupParameter<DoubleValue> ValueParameter {
|
---|
| 46 | get { return (ILookupParameter<DoubleValue>)Parameters["Value"]; }
|
---|
| 47 | }
|
---|
| 48 | #endregion
|
---|
| 49 | #region Properties
|
---|
| 50 | public DoubleValue Mu {
|
---|
| 51 | get { return MuParameter.ActualValue; }
|
---|
| 52 | set { MuParameter.ActualValue = value; }
|
---|
| 53 | }
|
---|
| 54 | public DoubleValue Max {
|
---|
| 55 | get { return SigmaParameter.ActualValue; }
|
---|
| 56 | set { SigmaParameter.ActualValue = value; }
|
---|
| 57 | }
|
---|
| 58 | #endregion
|
---|
[1153] | 59 | /// <summary>
|
---|
| 60 | /// Initializes a new instance of <see cref="NormalRandomizer"/> with four variable infos
|
---|
| 61 | /// (<c>Mu</c>, <c>Sigma</c>, <c>Value</c> and <c>Random</c>).
|
---|
| 62 | /// </summary>
|
---|
[2] | 63 | public NormalRandomizer() {
|
---|
[3269] | 64 | Parameters.Add(new LookupParameter<IRandom>("Random", "A random generator that supplies uniformly distributed values."));
|
---|
| 65 | Parameters.Add(new ValueLookupParameter<DoubleValue>("Mu", "Mu parameter of the normal distribution (N(mu,sigma))."));
|
---|
| 66 | Parameters.Add(new ValueLookupParameter<DoubleValue>("Sigma", "Sigma parameter of the normal distribution (N(mu,sigma))."));
|
---|
| 67 | Parameters.Add(new LookupParameter<DoubleValue>("Value", "The value that should be set to a random value."));
|
---|
[2] | 68 | }
|
---|
[4258] | 69 | [StorableConstructor]
|
---|
| 70 | protected NormalRandomizer(bool deserializing) : base(deserializing) { }
|
---|
[2] | 71 |
|
---|
[1153] | 72 | /// <summary>
|
---|
[3269] | 73 | /// Generates a new normally distributed random variable and assigns it to the specified variable.
|
---|
[1153] | 74 | /// </summary>
|
---|
[3269] | 75 | public override IOperation Apply() {
|
---|
| 76 | IRandom random = RandomParameter.ActualValue;
|
---|
| 77 | double mu = MuParameter.ActualValue.Value;
|
---|
| 78 | double sigma = SigmaParameter.ActualValue.Value;
|
---|
[2] | 79 |
|
---|
[3269] | 80 | NormalDistributedRandom normalRandom = new NormalDistributedRandom(random, mu, sigma);
|
---|
| 81 | ValueParameter.ActualValue = new DoubleValue(normalRandom.NextDouble());
|
---|
[2] | 82 | return null;
|
---|
| 83 | }
|
---|
| 84 | }
|
---|
| 85 | }
|
---|