ROOT 6.14/05 Reference Guide |
Population definition for genetic algorithm.
Definition at line 49 of file GeneticPopulation.h.
Public Member Functions | |
GeneticPopulation (const std::vector< TMVA::Interval *> &ranges, Int_t size, UInt_t seed=0) | |
Constructor. More... | |
virtual | ~GeneticPopulation () |
destructor More... | |
void | AddPopulation (GeneticPopulation *strangers) |
add another population (strangers) to the one of this GeneticPopulation More... | |
void | AddPopulation (GeneticPopulation &strangers) |
add another population (strangers) to the one of this GeneticPopulation More... | |
Double_t | GetFitness () const |
const std::vector< TMVA::GeneticGenes > & | GetGenePool () const |
std::vector< TMVA::GeneticGenes > & | GetGenePool () |
GeneticGenes * | GetGenes (Int_t index) |
gives back the "Genes" of the population with the given index. More... | |
Int_t | GetPopulationSize () const |
const std::vector< TMVA::GeneticRange * > & | GetRanges () const |
std::vector< TMVA::GeneticRange * > & | GetRanges () |
void | GiveHint (std::vector< Double_t > &hint, Double_t fitness=0) |
add an individual (a set of variables) to the population if there is a set of variables which is known to perform good, they can be given as a hint to the population More... | |
void | MakeChildren () |
Creates children out of members of the current generation. More... | |
void | MakeCopies (int number) |
Produces offspring which is are copies of their parents. More... | |
void | Mutate (Double_t probability=20, Int_t startIndex=0, Bool_t near=kFALSE, Double_t spread=0.1, Bool_t mirror=kFALSE) |
Mutates the individuals in the genePool. More... | |
void | NextGeneration () |
void | Print (Int_t untilIndex=-1) |
make a little printout of the individuals up to index "untilIndex" this means, . More... | |
void | Print (std::ostream &out, Int_t utilIndex=-1) |
make a little printout to the stream "out" of the individuals up to index "untilIndex" this means, . More... | |
void | SetRandomSeed (UInt_t seed=0) |
the random seed of the random generator More... | |
void | Sort () |
sort the genepool according to the fitness of the individuals More... | |
void | TrimPopulation () |
trim the population to the predefined size More... | |
TH1F * | VariableDistribution (Int_t varNumber, Int_t bins, Int_t min, Int_t max) |
give back a histogram with the distribution of the coefficients. More... | |
std::vector< Double_t > | VariableDistribution (Int_t varNumber) |
gives back all the values of coefficient "varNumber" of the current generation More... | |
Private Member Functions | |
MsgLogger & | Log () const |
GeneticGenes | MakeSex (GeneticGenes male, GeneticGenes female) |
this function takes two individuals and produces offspring by mixing (recombining) their coefficients. More... | |
Private Attributes | |
std::vector< TMVA::GeneticGenes > | fGenePool |
MsgLogger * | fLogger |
Int_t | fPopulationSizeLimit |
TRandom3 * | fRandomGenerator |
std::vector< TMVA::GeneticRange * > | fRanges |
#include <TMVA/GeneticPopulation.h>
TMVA::GeneticPopulation::GeneticPopulation | ( | const std::vector< TMVA::Interval *> & | ranges, |
Int_t | size, | ||
UInt_t | seed = 0 |
||
) |
Constructor.
Definition at line 52 of file GeneticPopulation.cxx.
|
virtual |
destructor
Definition at line 81 of file GeneticPopulation.cxx.
void TMVA::GeneticPopulation::AddPopulation | ( | GeneticPopulation * | strangers | ) |
add another population (strangers) to the one of this GeneticPopulation
Definition at line 283 of file GeneticPopulation.cxx.
void TMVA::GeneticPopulation::AddPopulation | ( | GeneticPopulation & | strangers | ) |
add another population (strangers) to the one of this GeneticPopulation
Definition at line 294 of file GeneticPopulation.cxx.
|
inline |
Definition at line 64 of file GeneticPopulation.h.
|
inline |
Definition at line 66 of file GeneticPopulation.h.
|
inline |
Definition at line 69 of file GeneticPopulation.h.
TMVA::GeneticGenes * TMVA::GeneticPopulation::GetGenes | ( | Int_t | index | ) |
gives back the "Genes" of the population with the given index.
Definition at line 197 of file GeneticPopulation.cxx.
|
inline |
Definition at line 63 of file GeneticPopulation.h.
|
inline |
Definition at line 67 of file GeneticPopulation.h.
|
inline |
Definition at line 70 of file GeneticPopulation.h.
add an individual (a set of variables) to the population if there is a set of variables which is known to perform good, they can be given as a hint to the population
Definition at line 313 of file GeneticPopulation.cxx.
|
inlineprivate |
Definition at line 101 of file GeneticPopulation.h.
void TMVA::GeneticPopulation::MakeChildren | ( | ) |
Creates children out of members of the current generation.
Children have a combination of the coefficients of their parents
Definition at line 122 of file GeneticPopulation.cxx.
void TMVA::GeneticPopulation::MakeCopies | ( | int | number | ) |
Produces offspring which is are copies of their parents.
Parameters:
Definition at line 107 of file GeneticPopulation.cxx.
|
private |
this function takes two individuals and produces offspring by mixing (recombining) their coefficients.
Definition at line 139 of file GeneticPopulation.cxx.
void TMVA::GeneticPopulation::Mutate | ( | Double_t | probability = 20 , |
Int_t | startIndex = 0 , |
||
Bool_t | near = kFALSE , |
||
Double_t | spread = 0.1 , |
||
Bool_t | mirror = kFALSE |
||
) |
Mutates the individuals in the genePool.
Parameters:
Definition at line 171 of file GeneticPopulation.cxx.
|
inline |
Definition at line 83 of file GeneticPopulation.h.
make a little printout of the individuals up to index "untilIndex" this means, .
. write out the best "untilIndex" individuals.
Definition at line 206 of file GeneticPopulation.cxx.
make a little printout to the stream "out" of the individuals up to index "untilIndex" this means, .
. write out the best "untilIndex" individuals.
Definition at line 228 of file GeneticPopulation.cxx.
the random seed of the random generator
Definition at line 96 of file GeneticPopulation.cxx.
void TMVA::GeneticPopulation::Sort | ( | ) |
sort the genepool according to the fitness of the individuals
Definition at line 324 of file GeneticPopulation.cxx.
void TMVA::GeneticPopulation::TrimPopulation | ( | ) |
trim the population to the predefined size
Definition at line 302 of file GeneticPopulation.cxx.
TH1F * TMVA::GeneticPopulation::VariableDistribution | ( | Int_t | varNumber, |
Int_t | bins, | ||
Int_t | min, | ||
Int_t | max | ||
) |
give back a histogram with the distribution of the coefficients.
Parameters:
Definition at line 254 of file GeneticPopulation.cxx.
gives back all the values of coefficient "varNumber" of the current generation
Definition at line 271 of file GeneticPopulation.cxx.
|
private |
Definition at line 95 of file GeneticPopulation.h.
|
mutableprivate |
Definition at line 100 of file GeneticPopulation.h.
|
private |
Definition at line 103 of file GeneticPopulation.h.
|
private |
Definition at line 98 of file GeneticPopulation.h.
|
private |
Definition at line 96 of file GeneticPopulation.h.