Uses of Class
classifier.gp.SelectionFunction

Packages that use SelectionFunction
classifier.gp   
 

Uses of SelectionFunction in classifier.gp
 

Subclasses of SelectionFunction in classifier.gp
 class BestSelection
           
 class FitnessOverselected
           
 class FitnessProportionate
           
 class RandomSelection
           
 class Tournament
           
 class WorstSelection
           
 

Methods in classifier.gp that return SelectionFunction
protected static SelectionFunction SelectionFunction.createSelectionFunction(int selection_function, java.util.Properties p)
          To choose the selection function through a number
 SelectionFunction Breeder.getReproductioinSelect()
           
 SelectionFunction Breeder.getMutationSelect()
           
 SelectionFunction Breeder.getCrossoverSelect()
           
 SelectionFunction Breeder.getCrossoverSelect2()
           
 

Methods in classifier.gp with parameters of type SelectionFunction
 Individual Population.findIndividual(SelectionFunction sf)
           
 void Breeder.setReproductioinSelect(SelectionFunction sf)
           
 void Breeder.setMutationSelect(SelectionFunction sf)
           
 void Breeder.setCrossoverSelect(SelectionFunction sf)
           
 void Breeder.setCrossoverSelect2(SelectionFunction sf)
           
 

Constructors in classifier.gp with parameters of type SelectionFunction
Exchanger(int id, int to, int from, int count, SelectionFunction to_select, SelectionFunction from_select)
           
Breeder(double rp_rate, double mt_rate, double cr_rate, SelectionFunction rp_sel, SelectionFunction mt_sel, SelectionFunction cr_sel1, SelectionFunction cr_sel2, MutationOperator mt, CrossoverOperator cr)