Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.BitVector/BitVectorCrossoverBase.cs @ 1222

Last change on this file since 1222 was 1218, checked in by swagner, 15 years ago

Refactoring of crossover operators (#470)

File size: 3.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Evolutionary;
28
29namespace HeuristicLab.BitVector {
30  /// <summary>
31  /// Base class for all bit vector crossover operators.
32  /// </summary>
33  public abstract class BitVectorCrossoverBase : CrossoverBase {
34    /// <summary>
35    /// Initializes a new instance of <see cref="BitVectorCrossoverBase"/> with one variable info
36    /// (<c>BitVector</c>).
37    /// </summary>
38    public BitVectorCrossoverBase()
39      : base() {
40      AddVariableInfo(new VariableInfo("BitVector", "Parent and child bit vector", typeof(BoolArrayData), VariableKind.In | VariableKind.New));
41    }
42
43    /// <summary>
44    /// Performs a crossover by calling <see cref="Cross(HeuristicLab.Core.IScope, HeuristicLab.Core.IRandom, bool[][]"/>
45    /// and adds the created bit vector to the current scope.
46    /// </summary>
47    /// <exception cref="InvalidOperationException">Thrown if the parents have different lengths.</exception>
48    /// <param name="scope">The current scope which represents a new child.</param>
49    /// <param name="random">A random number generator.</param>
50    protected sealed override void Cross(IScope scope, IRandom random) {
51      bool[][] parents = new bool[scope.SubScopes.Count][];
52      int length = -1;
53      for (int i = 0; i < scope.SubScopes.Count; i++) {
54        parents[i] = scope.SubScopes[i].GetVariableValue<BoolArrayData>("BitVector", false).Data;
55        if (i == 0) length = parents[i].Length;
56        else if (parents[i].Length != length) throw new InvalidOperationException("ERROR in BitVectorCrossoverBase: Cannot apply crossover to bit vectors of different length");
57      }
58
59      bool[] result = Cross(scope, random, parents);
60      scope.AddVariable(new Variable(scope.TranslateName("BitVector"), new BoolArrayData(result)));
61    }
62
63    /// <summary>
64    /// Performs a crossover of multiple bit vectors.
65    /// </summary>
66    /// <param name="scope">The current scope.</param>
67    /// <param name="random">A random number generator.</param>
68    /// <param name="parents">An array containing all parent bit vectors.</param>
69    /// <returns>The newly created bit vector, resulting from the crossover operation.</returns>
70    protected abstract bool[] Cross(IScope scope, IRandom random, bool[][] parents);
71  }
72}
Note: See TracBrowser for help on using the repository browser.