1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2013 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 HeuristicLab.Common;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Data;
|
---|
25 | using HeuristicLab.Operators;
|
---|
26 | using HeuristicLab.Parameters;
|
---|
27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 |
|
---|
29 | namespace HeuristicLab.Random {
|
---|
30 | /// <summary>
|
---|
31 | /// Uniformly distributed random number generator.
|
---|
32 | /// </summary>
|
---|
33 | [StorableClass]
|
---|
34 | [Item("UniformRandomizer", "Initializes the value of variable 'Value' to a random value uniformly distributed between 'Min' and 'Max'")]
|
---|
35 | public class UniformRandomizer : SingleSuccessorOperator {
|
---|
36 | #region Parameter Properties
|
---|
37 | public ILookupParameter<IRandom> RandomParameter {
|
---|
38 | get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
|
---|
39 | }
|
---|
40 | public IValueLookupParameter<DoubleValue> MinParameter {
|
---|
41 | get { return (IValueLookupParameter<DoubleValue>)Parameters["Min"]; }
|
---|
42 | }
|
---|
43 | public IValueLookupParameter<DoubleValue> MaxParameter {
|
---|
44 | get { return (IValueLookupParameter<DoubleValue>)Parameters["Max"]; }
|
---|
45 | }
|
---|
46 | public ILookupParameter<DoubleValue> ValueParameter {
|
---|
47 | get { return (ILookupParameter<DoubleValue>)Parameters["Value"]; }
|
---|
48 | }
|
---|
49 | #endregion
|
---|
50 |
|
---|
51 | #region Properties
|
---|
52 | public DoubleValue Min {
|
---|
53 | get { return MinParameter.ActualValue; }
|
---|
54 | set { MinParameter.ActualValue = value; }
|
---|
55 | }
|
---|
56 | public DoubleValue Max {
|
---|
57 | get { return MaxParameter.ActualValue; }
|
---|
58 | set { MaxParameter.ActualValue = value; }
|
---|
59 | }
|
---|
60 | #endregion
|
---|
61 |
|
---|
62 | [StorableConstructor]
|
---|
63 | protected UniformRandomizer(bool deserializing) : base(deserializing) { }
|
---|
64 | protected UniformRandomizer(UniformRandomizer original, Cloner cloner) : base(original, cloner) { }
|
---|
65 | /// <summary>
|
---|
66 | /// Initializes a new instance of <see cref="UniformRandomizer"/> with four variable infos
|
---|
67 | /// (<c>Value</c>, <c>Random</c>, <c>Max</c> and <c>Min</c>), being a random number generator
|
---|
68 | /// between 0.0 and 1.0.
|
---|
69 | /// </summary>
|
---|
70 | public UniformRandomizer()
|
---|
71 | : base() {
|
---|
72 | Parameters.Add(new LookupParameter<IRandom>("Random", "A random generator that supplies uniformly distributed values."));
|
---|
73 | Parameters.Add(new ValueLookupParameter<DoubleValue>("Min", "The minimal allowed value (inclusive)"));
|
---|
74 | Parameters.Add(new ValueLookupParameter<DoubleValue>("Max", "The maximal allowed value (exclusive)"));
|
---|
75 | Parameters.Add(new LookupParameter<DoubleValue>("Value", "The value that should be set to a random value."));
|
---|
76 | }
|
---|
77 |
|
---|
78 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
79 | return new UniformRandomizer(this, cloner);
|
---|
80 | }
|
---|
81 |
|
---|
82 | /// <summary>
|
---|
83 | /// Generates a new uniformly distributed random variable.
|
---|
84 | /// </summary>
|
---|
85 | public override IOperation Apply() {
|
---|
86 | IRandom random = RandomParameter.ActualValue;
|
---|
87 | double min = MinParameter.ActualValue.Value;
|
---|
88 | double max = MaxParameter.ActualValue.Value;
|
---|
89 |
|
---|
90 | ValueParameter.ActualValue = new DoubleValue(random.NextDouble() * (max - min) + min);
|
---|
91 | return base.Apply();
|
---|
92 | }
|
---|
93 | }
|
---|
94 | }
|
---|