[2773] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2773] | 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 |
|
---|
[3376] | 22 | using HeuristicLab.Common;
|
---|
[2773] | 23 | using HeuristicLab.Core;
|
---|
| 24 | using HeuristicLab.Data;
|
---|
[3368] | 25 | using HeuristicLab.Operators;
|
---|
[2773] | 26 | using HeuristicLab.Parameters;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 |
|
---|
[3368] | 29 | namespace HeuristicLab.Random {
|
---|
[2773] | 30 | /// <summary>
|
---|
[2924] | 31 | /// An operator which creates a new Mersenne Twister pseudo random number generator.
|
---|
[2773] | 32 | /// </summary>
|
---|
[2924] | 33 | [Item("RandomCreator", "An operator which creates a new Mersenne Twister pseudo random number generator.")]
|
---|
[3017] | 34 | [StorableClass]
|
---|
[2794] | 35 | public sealed class RandomCreator : SingleSuccessorOperator {
|
---|
[3048] | 36 | public ValueLookupParameter<BoolValue> SetSeedRandomlyParameter {
|
---|
| 37 | get { return (ValueLookupParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
|
---|
[2773] | 38 | }
|
---|
[3048] | 39 | public ValueLookupParameter<IntValue> SeedParameter {
|
---|
| 40 | get { return (ValueLookupParameter<IntValue>)Parameters["Seed"]; }
|
---|
[2773] | 41 | }
|
---|
| 42 | public LookupParameter<IRandom> RandomParameter {
|
---|
| 43 | get { return (LookupParameter<IRandom>)Parameters["Random"]; }
|
---|
| 44 | }
|
---|
[3048] | 45 | public BoolValue SetSeedRandomly {
|
---|
[2773] | 46 | get { return SetSeedRandomlyParameter.Value; }
|
---|
| 47 | set { SetSeedRandomlyParameter.Value = value; }
|
---|
| 48 | }
|
---|
[3048] | 49 | public IntValue Seed {
|
---|
[2773] | 50 | get { return SeedParameter.Value; }
|
---|
| 51 | set { SeedParameter.Value = value; }
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[2794] | 54 | public RandomCreator()
|
---|
[2773] | 55 | : base() {
|
---|
[3048] | 56 | Parameters.Add(new ValueLookupParameter<BoolValue>("SetSeedRandomly", "True if the random seed should be set to a random value, otherwise false.", new BoolValue(true)));
|
---|
| 57 | Parameters.Add(new ValueLookupParameter<IntValue>("Seed", "The random seed used to initialize the new pseudo random number generator.", new IntValue(0)));
|
---|
[2794] | 58 | Parameters.Add(new LookupParameter<IRandom>("Random", "The new pseudo random number generator which is initialized with the given seed."));
|
---|
[2773] | 59 | }
|
---|
| 60 |
|
---|
[2834] | 61 | public override IOperation Apply() {
|
---|
[3048] | 62 | if (SetSeedRandomlyParameter.ActualValue == null) SetSeedRandomlyParameter.ActualValue = new BoolValue(true);
|
---|
[2818] | 63 | bool setSeedRandomly = SetSeedRandomlyParameter.ActualValue.Value;
|
---|
[3048] | 64 | if (SeedParameter.ActualValue == null) SeedParameter.ActualValue = new IntValue(0);
|
---|
| 65 | IntValue seed = SeedParameter.ActualValue;
|
---|
[2773] | 66 |
|
---|
| 67 | if (setSeedRandomly) seed.Value = new System.Random().Next();
|
---|
| 68 | RandomParameter.ActualValue = new MersenneTwister((uint)seed.Value);
|
---|
| 69 |
|
---|
| 70 | return base.Apply();
|
---|
| 71 | }
|
---|
| 72 | }
|
---|
| 73 | }
|
---|