Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.1/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/StochasticNormalMultiMoveGenerator.cs

Last change on this file was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 2.6 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.Optimization;
25using HeuristicLab.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.Random;
28
29namespace HeuristicLab.Encodings.RealVectorEncoding {
30  [Item("StochasticNormalMultiMoveGenerator", "Generates normal distributed moves from a given real vector.")]
31  [StorableClass]
32  public class StochasticNormalMultiMoveGenerator : AdditiveMoveGenerator, IMultiMoveGenerator {
33    public IValueLookupParameter<DoubleValue> SigmaParameter {
34      get { return (IValueLookupParameter<DoubleValue>)Parameters["Sigma"]; }
35    }
36    public IValueLookupParameter<IntValue> SampleSizeParameter {
37      get { return (IValueLookupParameter<IntValue>)Parameters["SampleSize"]; }
38    }
39
40    public StochasticNormalMultiMoveGenerator()
41      : base() {
42      Parameters.Add(new ValueLookupParameter<DoubleValue>("Sigma", "The standard deviation of the normal distribution.", new DoubleValue(1)));
43      Parameters.Add(new ValueLookupParameter<IntValue>("SampleSize", "The number of moves that should be generated."));
44    }
45
46    public static AdditiveMove[] Apply(IRandom random, RealVector realVector, double sigma, int sampleSize) {
47      AdditiveMove[] moves = new AdditiveMove[sampleSize];
48      NormalDistributedRandom N = new NormalDistributedRandom(random, 0, sigma);
49      for (int i = 0; i < sampleSize; i++) {
50        int index = random.Next(realVector.Length);
51        moves[i] = new AdditiveMove(index, N.NextDouble());
52      }
53      return moves;
54    }
55
56    protected override AdditiveMove[] GenerateMoves(IRandom random, RealVector realVector) {
57      return Apply(random, realVector, SigmaParameter.ActualValue.Value, SampleSizeParameter.ActualValue.Value);
58    }
59  }
60}
Note: See TracBrowser for help on using the repository browser.