Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.RealVector/3.3/Crossovers/RandomConvexCrossover.cs @ 2936

Last change on this file since 2936 was 2936, checked in by svonolfe, 15 years ago

Added heuristic, local, random convex crossover and added some initial unit tests for all RealVector operators (#890)

File size: 3.9 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 System.Collections.Generic;
24using System.Text;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Encodings.RealVector {
30  /// <summary>
31  /// Random convex crossover for real vectors: Takes for each element the allele of the first parent times a
32  /// once created randomly chosen factor and adds the allele of the second parent times
33  /// (1 - the randomly chosen factor).
34  /// </summary>
35  /// <remarks>
36  /// It is implemented as described in Dumitrescu, D. et al. (2000), Evolutionary computation, CRC Press, Boca Raton, FL, pp. 193 - 194.
37  /// </remarks>
38  [Item("RandomConvexCrossover", "Random convex crossover for real vectors: Takes for each element the allele of the first parent times a once created randomly chosen factor and adds the allele of the second parent times (1 - the randomly chosen factor). " +
39    "It is implementes as described in Dumitrescu, D. et al. (2000), Evolutionary computation, CRC Press, Boca Raton, FL, pp. 193 - 194.")]
40  [EmptyStorableClass]
41  public class RandomConvexCrossover : RealVectorCrossover {
42    /// <summary>
43    /// Performs a random convex crossover on the two given parents.
44    /// </summary>
45    /// <exception cref="ArgumentException">Thrown when two parents are not of the same length.</exception>
46    /// <param name="random">The random number generator.</param>
47    /// <param name="parent1">The first parent vector for the crossover.</param>
48    /// <param name="parent2">The second parent vector for the crossover.</param>
49    /// <returns>The newly created real vector, resulting from the random convex crossover.</returns>
50    public static DoubleArrayData Apply(IRandom random, DoubleArrayData parent1, DoubleArrayData parent2) {
51      if (parent1.Length != parent2.Length)
52        throw new ArgumentException("ERROR in RandomConvexCrossover: the two parents are not of the same length");
53     
54      int length = parent1.Length;
55      double[] result = new double[length];
56      double factor = random.NextDouble();
57
58      for (int i = 0; i < length; i++)
59        result[i] = (factor * parent1[i]) + ((1 - factor) * parent2[i]);
60      return new DoubleArrayData(result);
61    }
62
63    /// <summary>
64    /// Performs a random convex crossover operation for two given parent real vectors.
65    /// </summary>
66    /// <exception cref="ArgumentException">Thrown if there are not exactly two parents.</exception>
67    /// <param name="random">A random number generator.</param>
68    /// <param name="parents">An array containing the two real vectors that should be crossed.</param>
69    /// <returns>The newly created real vector, resulting from the crossover operation.</returns>
70    protected override DoubleArrayData Cross(IRandom random, ItemArray<DoubleArrayData> parents) {
71      if (parents.Length != 2) throw new ArgumentException("ERROR in RandomConvexCrossover: The number of parents is not equal to 2");
72      return Apply(random, parents[0], parents[1]);
73    }
74  }
75}
Note: See TracBrowser for help on using the repository browser.