Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.1/HeuristicLab.Encodings.RealVectorEncoding/3.3/Crossovers/SinglePointCrossover.cs @ 9407

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

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

File size: 4.4 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.Persistence.Default.CompositeSerializers.Storable;
25
26namespace HeuristicLab.Encodings.RealVectorEncoding {
27  /// <summary>
28  /// Single point crossover for real vectors. The implementation is similar to the single point crossover for binary vectors.
29  /// After a breakpoint is randomly chosen in the interval [1,N-1) with N = length of the vector, the first part is copied from parent1 the other part copied from parent2.
30  /// The interval is chosen such that at least one position is taken from a different parent.
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("SinglePointCrossover", "Breaks both parent chromosomes at a randomly chosen point and assembles a child by taking one part of the first parent and the other part of the second pard. 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 SinglePointCrossover : RealVectorCrossover {
38    /// <summary>
39    /// Performs the single point crossover for real vectors. The implementation is similar to the single point crossover for binary vectors.
40    /// After a breakpoint is randomly chosen in the interval [1,N-1) with N = length of the vector, the first part is copied from parent1 the other part copied from parent2.
41    /// </summary>
42    /// <exception cref="ArgumentException">Thrown when the length of the vector is not the same in both parents.</exception>
43    /// <param name="random">A random number generator.</param>
44    /// <param name="parent1">The first parent for crossover.</param>
45    /// <param name="parent2">The second parent for crossover.</param>
46    /// <returns>The newly created real vector, resulting from the single point crossover.</returns>
47    public static RealVector Apply(IRandom random, RealVector parent1, RealVector parent2) {
48      if (parent1.Length != parent2.Length) throw new ArgumentException("SinglePointCrossover: Parents are of unequal length");
49      if (parent1.Length < 2) throw new ArgumentException("SinglePointCrossover: Cannot be applied to vectors with just one dimension.");
50      int length = parent1.Length;
51      RealVector result = new RealVector(length);
52      int breakPoint;
53      if (length == 2) breakPoint = 1;
54      else breakPoint = random.Next(1, length - 1);
55
56      for (int i = 0; i < breakPoint; i++)
57        result[i] = parent1[i];
58      for (int i = breakPoint; i < length; i++)
59        result[i] = parent2[i];
60
61      return result;
62    }
63
64    /// <summary>
65    /// Checks number of parents and forwards the call to <see cref="Apply(IRandom, RealVector, RealVector)"/>.
66    /// </summary>
67    /// <exception cref="ArgumentException">Thrown when the parents' vectors are of unequal length or when <paramref name="contiguity"/> is smaller than 0.</exception>
68    /// <param name="random">The pseudo random number generator to use.</param>
69    /// <param name="parents">The list of parents.</param>
70    /// <returns>A new real vector.</returns>
71    protected override RealVector Cross(IRandom random, ItemArray<RealVector> parents) {
72      if (parents.Length != 2) throw new ArgumentException("SinglePointCrossover: The number of parents is not equal to 2");
73      return Apply(random, parents[0], parents[1]);
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.