Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.1/HeuristicLab.Random/3.3/RandomCreator.cs @ 9407

Last change on this file since 9407 was 4258, checked in by swagner, 14 years ago

Worked in integration of FastRandom PRNG (#1114)

File size: 4.1 KB
Line 
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
22using HeuristicLab.Core;
23using HeuristicLab.Data;
24using HeuristicLab.Operators;
25using HeuristicLab.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Random {
29  /// <summary>
30  /// An operator which creates a new Mersenne Twister pseudo random number generator.
31  /// </summary>
32  [Item("RandomCreator", "An operator which creates a new Mersenne Twister pseudo random number generator.")]
33  [StorableClass]
34  public sealed class RandomCreator : SingleSuccessorOperator {
35    public ValueLookupParameter<BoolValue> SetSeedRandomlyParameter {
36      get { return (ValueLookupParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
37    }
38    public ValueLookupParameter<IntValue> SeedParameter {
39      get { return (ValueLookupParameter<IntValue>)Parameters["Seed"]; }
40    }
41    public ValueParameter<IRandom> RandomTypeParameter {
42      get { return (ValueParameter<IRandom>)Parameters["RandomType"]; }
43    }
44    public LookupParameter<IRandom> RandomParameter {
45      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
46    }
47    public BoolValue SetSeedRandomly {
48      get { return SetSeedRandomlyParameter.Value; }
49      set { SetSeedRandomlyParameter.Value = value; }
50    }
51    public IntValue Seed {
52      get { return SeedParameter.Value; }
53      set { SeedParameter.Value = value; }
54    }
55    public IRandom RandomType {
56      get { return RandomTypeParameter.Value; }
57      set { RandomTypeParameter.Value = value; }
58    }
59
60    public RandomCreator()
61      : base() {
62      Parameters.Add(new ValueLookupParameter<BoolValue>("SetSeedRandomly", "True if the random seed should be set to a random value, otherwise false.", new BoolValue(true)));
63      Parameters.Add(new ValueLookupParameter<IntValue>("Seed", "The random seed used to initialize the new pseudo random number generator.", new IntValue(0)));
64      Parameters.Add(new ValueParameter<IRandom>("RandomType", "The type of pseudo random number generator which is created.", new MersenneTwister()));
65      Parameters.Add(new LookupParameter<IRandom>("Random", "The new pseudo random number generator which is initialized with the given seed."));
66    }
67    [StorableConstructor]
68    private RandomCreator(bool deserializing) : base(deserializing) { }
69
70    // BackwardsCompatibility3.3
71    #region Backwards compatible code (remove with 3.4)
72    [StorableHook(HookType.AfterDeserialization)]
73    private void AfterDeserializationHook() {
74      if (!Parameters.ContainsKey("RandomType"))
75        Parameters.Add(new ValueParameter<IRandom>("RandomType", "The type of pseudo random number generator which is created.", new MersenneTwister()));
76    }
77    #endregion
78
79    public override IOperation Apply() {
80      if (SetSeedRandomlyParameter.ActualValue == null) SetSeedRandomlyParameter.ActualValue = new BoolValue(true);
81      bool setSeedRandomly = SetSeedRandomlyParameter.ActualValue.Value;
82      if (SeedParameter.ActualValue == null) SeedParameter.ActualValue = new IntValue(0);
83      IntValue seed = SeedParameter.ActualValue;
84
85      if (setSeedRandomly) seed.Value = new System.Random().Next();
86      IRandom random = (IRandom)RandomType.Clone();
87      random.Reset(seed.Value);
88      RandomParameter.ActualValue = random;
89
90      return base.Apply();
91    }
92  }
93}
Note: See TracBrowser for help on using the repository browser.