edu.udo.cs.yale.operator.features
Class Individual

java.lang.Object
  extended by edu.udo.cs.yale.operator.features.Individual

public class Individual
extends java.lang.Object

Individuals contain all necessary informations about example sets for population based search heuristics, including the performance. Each individiual can also handle a crowding distance for multi-objecitve optimization approaches.

Version:
$Id: Individual.java,v 2.6 2006/08/03 14:39:31 ingomierswa Exp $
Author:
Ingo Mierswa

Field Summary
private  AttributeWeights attributeWeights
          Some search schemes use attribute weights to guide the search point operations.
private  double crowdingDistance
          The crowding distance can used for multiobjective optimization schemes.
private  AttributeWeightedExampleSet exampleSet
          The example set.
private  PerformanceVector performanceVector
          The performance this example set has achieved during evaluation.
 
Constructor Summary
Individual(AttributeWeightedExampleSet exampleSet)
          Creates a new individual.
 
Method Summary
 AttributeWeights getAttributeWeights()
           
 double getCrowdingDistance()
           
 AttributeWeightedExampleSet getExampleSet()
           
 PerformanceVector getPerformance()
           
 void setAttributeWeights(AttributeWeights weights)
           
 void setCrowdingDistance(double crowdingDistance)
           
 void setPerformance(PerformanceVector performanceVector)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

exampleSet

private AttributeWeightedExampleSet exampleSet
The example set.


performanceVector

private PerformanceVector performanceVector
The performance this example set has achieved during evaluation. Null if no evaluation has been performed so far.


crowdingDistance

private double crowdingDistance
The crowding distance can used for multiobjective optimization schemes.


attributeWeights

private AttributeWeights attributeWeights
Some search schemes use attribute weights to guide the search point operations.

Constructor Detail

Individual

public Individual(AttributeWeightedExampleSet exampleSet)
Creates a new individual.

Method Detail

getExampleSet

public AttributeWeightedExampleSet getExampleSet()

getPerformance

public PerformanceVector getPerformance()

setPerformance

public void setPerformance(PerformanceVector performanceVector)

getCrowdingDistance

public double getCrowdingDistance()

setCrowdingDistance

public void setCrowdingDistance(double crowdingDistance)

getAttributeWeights

public AttributeWeights getAttributeWeights()

setAttributeWeights

public void setAttributeWeights(AttributeWeights weights)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object


Copyright © 2001-2006