[2] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 | using HeuristicLab.Evolutionary;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.RealVector {
|
---|
[1184] | 30 | /// <summary>
|
---|
| 31 | /// Base class for all real vector crossover operators.
|
---|
| 32 | /// </summary>
|
---|
[2] | 33 | public abstract class RealVectorCrossoverBase : CrossoverBase {
|
---|
[1184] | 34 | /// <summary>
|
---|
| 35 | /// Initializes a new instance of <see cref="RealVectorCrossoverBase"/> with one variable info
|
---|
| 36 | /// (<c>RealVector</c>).
|
---|
| 37 | /// </summary>
|
---|
[2] | 38 | public RealVectorCrossoverBase()
|
---|
| 39 | : base() {
|
---|
| 40 | AddVariableInfo(new VariableInfo("RealVector", "Parent and child real vector", typeof(DoubleArrayData), VariableKind.In | VariableKind.New));
|
---|
| 41 | }
|
---|
| 42 |
|
---|
[1184] | 43 | /// <summary>
|
---|
[1218] | 44 | /// Performs a crossover by calling <see cref="Cross(HeuristicLab.Core.IScope, HeuristicLab.Core.IRandom, double[][]"/>
|
---|
| 45 | /// and adds the created real vector to the current scope.
|
---|
[1184] | 46 | /// </summary>
|
---|
[1218] | 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>
|
---|
[1184] | 49 | /// <param name="random">A random number generator.</param>
|
---|
[1218] | 50 | protected sealed override void Cross(IScope scope, IRandom random) {
|
---|
| 51 | double[][] parents = new double[scope.SubScopes.Count][];
|
---|
| 52 | int length = -1;
|
---|
| 53 | for (int i = 0; i < scope.SubScopes.Count; i++) {
|
---|
| 54 | parents[i] = scope.SubScopes[i].GetVariableValue<DoubleArrayData>("RealVector", false).Data;
|
---|
| 55 | if (i == 0) length = parents[i].Length;
|
---|
| 56 | else if (parents[i].Length != length) throw new InvalidOperationException("ERROR in RealVectorCrossoverBase: Cannot apply crossover to real vectors of different length");
|
---|
| 57 | }
|
---|
[2] | 58 |
|
---|
[1218] | 59 | double[] result = Cross(scope, random, parents);
|
---|
| 60 | scope.AddVariable(new Variable(scope.TranslateName("RealVector"), new DoubleArrayData(result)));
|
---|
[2] | 61 | }
|
---|
| 62 |
|
---|
[1184] | 63 | /// <summary>
|
---|
[1218] | 64 | /// Performs a crossover of multiple real vectors.
|
---|
[1184] | 65 | /// </summary>
|
---|
| 66 | /// <param name="scope">The current scope.</param>
|
---|
| 67 | /// <param name="random">A random number generator.</param>
|
---|
[1218] | 68 | /// <param name="parents">An array containing all parent real vectors.</param>
|
---|
[1184] | 69 | /// <returns>The newly created real vector, resulting from the crossover operation.</returns>
|
---|
[1218] | 70 | protected abstract double[] Cross(IScope scope, IRandom random, double[][] parents);
|
---|
[2] | 71 | }
|
---|
| 72 | }
|
---|