Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3182 was 3182, checked in by abeham, 14 years ago

Updated real vector to check bounds after each crossover and manipulation #890

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