islandev
Interface Individual

All Superinterfaces:
java.lang.Comparable

public interface Individual
extends java.lang.Comparable

An individual in the evolving population must be able to provide a fitness and other properties (which could be null in particular applications). In the case of using IslandEv with JaGa the class Genotype already implements Individual. Otherwise your class representing individuals in your population must implement this interface.


Method Summary
 double getFitness()
           
 java.lang.Object getProperty(int index)
           
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getFitness

public double getFitness()

getProperty

public java.lang.Object getProperty(int index)