edu.udo.cs.yale.operator.features.weighting
Class VarianceAdaption

java.lang.Object
  extended by edu.udo.cs.yale.operator.features.weighting.VarianceAdaption
All Implemented Interfaces:
PopulationOperator

public class VarianceAdaption
extends java.lang.Object
implements PopulationOperator

Implements the 1/5-Rule for dynamic parameter adaption of the variance of a WeightingMutation.

Version:
$Id: VarianceAdaption.java,v 1.12 2006/03/27 13:22:00 ingomierswa Exp $
Author:
Ingo Mierswa

Field Summary
private  int intervalSize
          The interval size in which the new variance is calculated.
private  java.util.LinkedList<java.lang.Boolean> successList
          Remember for all positions if an improval was found.
private  WeightingMutation weightingMutation
          The weighting mutation.
 
Constructor Summary
VarianceAdaption(WeightingMutation weightingMutation, int intervalSize)
          The interval size should be as big as the changeable components, i.e. the number of attributes.
 
Method Summary
 void operate(Population population)
          Modifies the population.
 boolean performOperation(int generation)
          The default implementation returns true for every generation.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

weightingMutation

private WeightingMutation weightingMutation
The weighting mutation.


intervalSize

private int intervalSize
The interval size in which the new variance is calculated.


successList

private java.util.LinkedList<java.lang.Boolean> successList
Remember for all positions if an improval was found.

Constructor Detail

VarianceAdaption

public VarianceAdaption(WeightingMutation weightingMutation,
                        int intervalSize)
The interval size should be as big as the changeable components, i.e. the number of attributes.

Method Detail

performOperation

public boolean performOperation(int generation)
The default implementation returns true for every generation.

Specified by:
performOperation in interface PopulationOperator


operate

public void operate(Population population)
Description copied from interface: PopulationOperator
Modifies the population.

Specified by:
operate in interface PopulationOperator



Copyright © 2001-2006