edu.udo.cs.yale.operator.learner.meta.eaboost
Class BoostingCrossover

java.lang.Object
  extended by edu.udo.cs.yale.operator.learner.meta.eaboost.BoostingCrossover

public class BoostingCrossover
extends java.lang.Object

Performs a GA crossover similar for individuals with variable lengths. Individuals should at least supports one-point and uniform crossover.

Version:
$Id: BoostingCrossover.java,v 1.1 2006/04/05 08:57:26 ingomierswa Exp $
Author:
Ingo Mierswa

Field Summary
private  double crossoverProb
          The crossover probability.
private  int crossoverType
          The crossover type.
 
Constructor Summary
BoostingCrossover(int type, double probability)
          Creates a new aggregation crossover operator.
 
Method Summary
 void crossover(java.util.List<BoostingIndividual> population)
          Randomly selects parents from the population and performs crossover.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

crossoverType

private int crossoverType
The crossover type.


crossoverProb

private double crossoverProb
The crossover probability.

Constructor Detail

BoostingCrossover

public BoostingCrossover(int type,
                         double probability)
Creates a new aggregation crossover operator.

Method Detail

crossover

public void crossover(java.util.List<BoostingIndividual> population)
Randomly selects parents from the population and performs crossover. The parents are kept.



Copyright © 2001-2006