Last change
on this file since 94 was
73,
checked in by swagner, 17 years ago
|
Worked on ticket #15
- adapted interfaces of static Apply methods
- added missing variable info Maximization in HeuristicCrossover
- simplified code
|
File size:
852 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using HeuristicLab.Core;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.RealVector {
|
---|
7 | class DiscreteCrossover : RealVectorCrossoverBase {
|
---|
8 | public override string Description {
|
---|
9 | get { return "Discrete crossover for real vectors."; }
|
---|
10 | }
|
---|
11 |
|
---|
12 | public static double[] Apply(IRandom random, double[] parent1, double[] parent2) {
|
---|
13 | int length = parent1.Length;
|
---|
14 | double[] result = new double[length];
|
---|
15 |
|
---|
16 | for (int i = 0; i < length; i++) {
|
---|
17 | if (random.NextDouble() < 0.5)
|
---|
18 | result[i] = parent1[i];
|
---|
19 | else
|
---|
20 | result[i] = parent2[i];
|
---|
21 | }
|
---|
22 | return result;
|
---|
23 | }
|
---|
24 |
|
---|
25 | protected override double[] Cross(IScope scope, IRandom random, double[] parent1, double[] parent2) {
|
---|
26 | return Apply(random, parent1, parent2);
|
---|
27 | }
|
---|
28 | }
|
---|
29 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.