Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Crossovers/AverageCrossover.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: 3.6 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.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Encodings.RealVectorEncoding {
29  /// <summary>
30  /// The average crossover (intermediate recombination) calculates the average or centroid of a number of parent vectors.
31  /// </summary>
32  /// <remarks>
33  /// It is implemented as described by Beyer, H.-G. and Schwefel, H.-P. 2002. Evolution Strategies - A Comprehensive Introduction Natural Computing, 1, pp. 3-52.
34  /// </remarks>
35  [Item("AverageCrossover", "The average crossover (intermediate recombination) produces a new offspring by calculating in each position the average of a number of parents. It is implemented as described by Beyer, H.-G. and Schwefel, H.-P. 2002. Evolution Strategies - A Comprehensive Introduction Natural Computing, 1, pp. 3-52.")]
36  [StorableClass]
37  public class AverageCrossover : RealVectorCrossover {
38    /// <summary>
39    /// Performs the average crossover (intermediate recombination) on a list of parents.
40    /// </summary>
41    /// <exception cref="ArgumentException">Thrown when there is just one parent or when the parent vectors are of different length.</exception>
42    /// <remarks>
43    /// There can be more than two parents.
44    /// </remarks>
45    /// <param name="random">The random number generator.</param>
46    /// <param name="parents">The list of parents.</param>
47    /// <returns>The child vector (average) of the parents.</returns>
48    public static RealVector Apply(IRandom random, ItemArray<RealVector> parents) {
49      int length = parents[0].Length, parentsCount = parents.Length;
50      if (parents.Length < 2) throw new ArgumentException("AverageCrossover: The number of parents is less than 2.", "parents");
51      RealVector result = new RealVector(length);
52      try {
53        double avg;
54        for (int i = 0; i < length; i++) {
55          avg = 0;
56          for (int j = 0; j < parentsCount; j++)
57            avg += parents[j][i];
58          result[i] = avg / (double)parentsCount;
59        }
60      } catch (IndexOutOfRangeException) {
61        throw new ArgumentException("AverageCrossover: The parents' vectors are of different length.", "parents");
62      }
63
64      return result;
65    }
66
67    /// <summary>
68    /// Forwards the call to <see cref="Apply(IRandom, ItemArray<RealVector>)"/>.
69    /// </summary>
70    /// <param name="random">The random number generator.</param>
71    /// <param name="parents">The list of parents.</param>
72    /// <returns>The child vector (average) of the parents.</returns>
73    protected override RealVector Cross(IRandom random, ItemArray<RealVector> parents) {
74      return Apply(random, parents);
75    }
76  }
77}
Note: See TracBrowser for help on using the repository browser.