edu.udo.cs.yale.tools.math.optimization.ec.es
Class Crossover
java.lang.Object
edu.udo.cs.yale.tools.math.optimization.ec.es.Crossover
- All Implemented Interfaces:
- PopulationOperator
public class Crossover
- extends java.lang.Object
- implements PopulationOperator
Crossover operator for the values of an evolution strategies optimization. An individual is selected
with a given fixed propability and a mating partner is determined randomly.
This class only impplements uniform crossover.
- Version:
- $Id: Crossover.java,v 1.1 2006/08/25 11:18:57 ingomierswa Exp $
- Author:
- Ingo Mierswa
Field Summary |
private double |
prob
|
private java.util.Random |
random
|
Constructor Summary |
Crossover(double prob,
java.util.Random random)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
prob
private double prob
random
private java.util.Random random
Crossover
public Crossover(double prob,
java.util.Random random)
crossover
public void crossover(Individual i1,
Individual i2)
operate
public void operate(Population population)
- Specified by:
operate
in interface PopulationOperator
Copyright © 2001-2006