Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Manipulators/UniformOnePositionManipulator.cs @ 4068

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

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

File size: 4.3 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.IntegerVectorEncoding {
29  /// <summary>
30  /// Uniformly distributed change of a single position of an integer vector.
31  /// </summary>
32  /// <remarks>
33  /// It is implemented as described in Michalewicz, Z. 1999. Genetic Algorithms + Data Structures = Evolution Programs. Third, Revised and Extended Edition, Spring-Verlag Berlin Heidelberg.
34  /// </remarks>
35  [Item("UniformOnePositionManipulator", " Uniformly distributed change of a single position of an integer vector. 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  [StorableClass]
37  public class UniformOnePositionManipulator : IntegerVectorManipulator {
38    /// <summary>
39    /// The lower bound of the values in the int vector.
40    /// </summary>
41    public ValueLookupParameter<IntValue> MinimumParameter {
42      get { return (ValueLookupParameter<IntValue>)Parameters["Minimum"]; }
43    }
44    /// <summary>
45    /// The upper bound of the values in the int vector.
46    /// </summary>
47    public ValueLookupParameter<IntValue> MaximumParameter {
48      get { return (ValueLookupParameter<IntValue>)Parameters["Maximum"]; }
49    }
50
51    /// <summary>
52    /// Initializes a new instance of <see cref="UniformOnePositionManipulator"/> with two parameters
53    /// (<c>Minimum</c> and <c>Maximum</c>).
54    /// </summary>
55    public UniformOnePositionManipulator() {
56      Parameters.Add(new ValueLookupParameter<IntValue>("Minimum", "Minimum of the sampling range for the vector element (included)"));
57      Parameters.Add(new ValueLookupParameter<IntValue>("Maximum", "Maximum of the sampling range for the vector element (excluded)"));
58    }
59
60    /// <summary>
61    /// Changes randomly a single position in the given integer <paramref name="vector"/>.
62    /// </summary>
63    /// <param name="random">A random number generator.</param>
64    /// <param name="vector">The integer vector to manipulate.</param>
65    /// <param name="min">The minimum value of the sampling range for
66    /// the vector element to change (inclusive).</param>
67    /// <param name="max">The maximum value of the sampling range for
68    /// the vector element to change (exclusive).</param>
69    public static void Apply(IRandom random, IntegerVector vector, IntValue min, IntValue max) {
70      int index = random.Next(vector.Length);
71      vector[index] = random.Next(min.Value, max.Value);
72    }
73
74    /// <summary>
75    /// Changes randomly a single position in the given integer <paramref name="vector"/>.
76    /// </summary>
77    /// <remarks>Calls <see cref="Apply"/>.</remarks>
78    /// <param name="random">A random number generator.</param>
79    /// <param name="vector">The integer vector to manipulate.</param>
80    protected override void Manipulate(IRandom random, IntegerVector vector) {
81      if (MinimumParameter.ActualValue == null) throw new InvalidOperationException("UniformOnePositionManipulator: Parameter " + MinimumParameter.ActualName + " could not be found.");
82      if (MaximumParameter.ActualValue == null) throw new InvalidOperationException("UniformOnePositionManipulator: Parameter " + MaximumParameter.ActualName + " could not be found.");
83      Apply(random, vector, MinimumParameter.ActualValue, MaximumParameter.ActualValue);
84    }
85  }
86}
Note: See TracBrowser for help on using the repository browser.