Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Manipulators/MichalewiczNonUniformOnePositionManipulator.cs @ 3376

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

Moved interfaces and classes for deep cloning from HeuristicLab.Core to HeuristicLab.Common (#975).

File size: 7.0 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 System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Encodings.RealVectorEncoding {
30  /// <summary>
31  /// The solution is manipulated with diminishing strength over time. In addition the mutated value is not sampled over the entire domain, but additive at the selected position.<br/>
32  /// Initially, the space will be searched uniformly and very locally at later stages. This increases the probability of generating the new number closer to the current value.
33  /// </summary>
34  /// <remarks>
35  /// It is implemented as described in Michalewicz, Z. 1999. Genetic Algorithms + Data Structures = Evolution Programs. Third, Revised and Extended Edition, Spring-Verlag Berlin Heidelberg.
36  /// </remarks>
37  [Item("MichalewiczNonUniformOnePositionManipulator", "It is implemented as described in Michalewicz, Z. 1999. Genetic Algorithms + Data Structures = Evolution Programs. Third, Revised and Extended Edition, Spring-Verlag Berlin Heidelberg.")]
38  [StorableClass]
39  public class MichalewiczNonUniformOnePositionManipulator : RealVectorManipulator {
40    /// <summary>
41    /// The current generation.
42    /// </summary>
43    public LookupParameter<IntValue> GenerationParameter {
44      get { return (LookupParameter<IntValue>)Parameters["Generation"]; }
45    }
46    /// <summary>
47    /// The maximum generation.
48    /// </summary>
49    public LookupParameter<IntValue> MaximumGenerationsParameter {
50      get { return (LookupParameter<IntValue>)Parameters["MaximumGenerations"]; }
51    }
52    /// <summary>
53    /// The parameter describing how much the mutation should depend on the progress towards the maximum generation.
54    /// </summary>
55    public ValueLookupParameter<DoubleValue> GenerationDependencyParameter {
56      get { return (ValueLookupParameter<DoubleValue>)Parameters["GenerationDependency"]; }
57    }
58
59    /// <summary>
60    /// Initializes a new instance of <see cref="MichalewiczNonUniformOnePositionManipulator"/> with four
61    /// parameters (<c>Bounds</c>, <c>CurrentGeneration</c>, <c>MaximumGenerations</c>
62    /// and <c>GenerationDependency</c>).
63    /// </summary>
64    public MichalewiczNonUniformOnePositionManipulator()
65      : base() {
66      Parameters.Add(new LookupParameter<IntValue>("Generation", "Current generation of the algorithm"));
67      Parameters.Add(new LookupParameter<IntValue>("MaximumGenerations", "Maximum number of generations"));
68      Parameters.Add(new ValueLookupParameter<DoubleValue>("GenerationDependency", "Specifies the degree of dependency on the number of generations", new DoubleValue(5)));
69    }
70
71    /// <summary>
72    /// Performs a non uniformly distributed one position manipulation on the given
73    /// real <paramref name="vector"/>. The probability of stronger mutations reduces the more <see cref="currentGeneration"/> approaches <see cref="maximumGenerations"/>.
74    /// </summary>
75    /// <exception cref="ArgumentException">Thrown when <paramref name="currentGeneration"/> is greater than <paramref name="maximumGenerations"/>.</exception>
76    /// <param name="random">The random number generator.</param>
77    /// <param name="vector">The real vector to manipulate.</param>
78    /// <param name="bounds">The lower and upper bound (1st and 2nd column) of the positions in the vector. If there are less rows than dimensions, the rows are cycled.</param>
79    /// <param name="currentGeneration">The current generation of the algorithm.</param>
80    /// <param name="maximumGenerations">Maximum number of generations.</param>
81    /// <param name="generationsDependency">Specifies the degree of dependency on the number of generations.</param>
82    /// <returns>The manipulated real vector.</returns>
83    public static void Apply(IRandom random, RealVector vector, DoubleMatrix bounds, IntValue currentGeneration, IntValue maximumGenerations, DoubleValue generationsDependency) {
84      if (currentGeneration.Value > maximumGenerations.Value) throw new ArgumentException("MichalewiczNonUniformOnePositionManipulator: CurrentGeneration must be smaller or equal than MaximumGeneration", "currentGeneration");
85      int length = vector.Length;
86      int index = random.Next(length);
87
88      double prob = (1 - Math.Pow(random.NextDouble(), Math.Pow(1 - currentGeneration.Value / maximumGenerations.Value, generationsDependency.Value)));
89
90      double min = bounds[index % bounds.Rows, 0];
91      double max = bounds[index % bounds.Rows, 1];
92
93      if (random.NextDouble() < 0.5) {
94        vector[index] = vector[index] + (max - vector[index]) * prob;
95      } else {
96        vector[index] = vector[index] - (vector[index] - min) * prob;
97      }
98    }
99
100    /// <summary>
101    /// Checks if all parameters are available and forwards the call to <see cref="Apply(IRandom, RealVector, DoubleValue, DoubleValue, IntValue, IntValue, DoubleValue)"/>.
102    /// </summary>
103    /// <param name="random">The random number generator.</param>
104    /// <param name="realVector">The real vector that should be manipulated.</param>
105    protected override void Manipulate(IRandom random, RealVector realVector) {
106      if (BoundsParameter.ActualValue == null) throw new InvalidOperationException("MichalewiczNonUniformOnePositionManipulator: Parameter " + BoundsParameter.ActualName + " could not be found.");
107      if (GenerationParameter.ActualValue == null) throw new InvalidOperationException("MichalewiczNonUniformOnePositionManipulator: Parameter " + GenerationParameter.ActualName + " could not be found.");
108      if (MaximumGenerationsParameter.ActualValue == null) throw new InvalidOperationException("MichalewiczNonUniformOnePositionManipulator: Parameter " + MaximumGenerationsParameter.ActualName + " could not be found.");
109      if (GenerationDependencyParameter.ActualValue == null) throw new InvalidOperationException("MichalewiczNonUniformOnePositionManipulator: Parameter " + GenerationDependencyParameter.ActualName + " could not be found.");
110      Apply(random, realVector, BoundsParameter.ActualValue, GenerationParameter.ActualValue, MaximumGenerationsParameter.ActualValue, GenerationDependencyParameter.ActualValue);
111    }
112  }
113}
Note: See TracBrowser for help on using the repository browser.