weka.filters.supervised.attribute.gpattributegeneration
Class GeneticCrossoverParam

java.lang.Object
  extended by weka.filters.supervised.attribute.gpattributegeneration.GeneticCrossoverParam

public class GeneticCrossoverParam
extends java.lang.Object

Provides a 'struct' to store control variables for Genetic crossover

Author:
Colin Noakes

Field Summary
 int crossOverPoint
          The point at which to perform crossover.
 boolean success
          Denotes whether the crossover has been successful yet.
 
Constructor Summary
GeneticCrossoverParam(boolean success, int crossOverPoint)
          Initialise the struct
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

success

public boolean success
Denotes whether the crossover has been successful yet. (Has reached the bottom node on the sub-tree being crossed)


crossOverPoint

public int crossOverPoint
The point at which to perform crossover.

Constructor Detail

GeneticCrossoverParam

public GeneticCrossoverParam(boolean success,
                             int crossOverPoint)
Initialise the struct

Parameters:
success - Denotes whether the crossover has been successful yet. (Has reached the bottom node on the sub-tree being crossed)
crossOverPoint - The point at which to perform crossover.