Robot Simulator of the Robotics Group for Self-Organization of Control
0.8.0
|
The Generation class. More...
#include <Generation.h>
Public Member Functions | |
Generation (int generationNumber, int size, int numChildren) | |
constructor to create a Generation. More... | |
virtual | ~Generation () |
destructor to delete a GenContext. More... | |
int | getGenerationNumber (void) const |
[inline], [const] This function gives the ID (number) of the generation back. More... | |
int | getSize (void) const |
[inline], [const] This function gives the size which is planed for this generation back. More... | |
int | getCurrentSize (void) const |
[inline], [const] This function gives the actual size (number of individuals inside the generation) back. More... | |
int | getNumChildren (void) const |
[inline], [const] This function gives the number of children back, which will be created by crossover. More... | |
Individual * | getIndividual (int x) const |
[individual], [const] This function gives one individual from this generation back. More... | |
const std::vector< Individual * > & | getAllIndividual (void) const |
[inline], [const] This function gives all individual back. More... | |
std::vector< Individual * > * | getAllUnCalculatedIndividuals (void) const |
[inline], [const] This function gives all individual back which aren't have the fitness value calculated. More... | |
void | addIndividual (Individual *individual) |
This function insert an individual in the generation. More... | |
void | crossover (RandGen *random) |
This function makes an crossOver whit the existing individuals to become from the current size the planed size. More... | |
std::string | getAllIndividualAsString (void) const |
returns a string which represent all individual in this generation. More... | |
std::vector< double > * | getAllFitness (void) const |
returns all fitness values from the individuals. More... | |
void | update (double factor=1.5) |
This function updates the statistical values. More... | |
bool | store (FILE *f) const |
store a generation in a file More... | |
![]() | |
Inspectable (const iparamkey &name="") | |
TYPEDEFS END. More... | |
virtual | ~Inspectable () |
virtual iparamkeylist | getInternalParamNames () const |
The list of the names of all internal parameters given by getInternalParams(). More... | |
virtual iparamvallist | getInternalParams () const |
virtual iparamvalptrlist | getInternalParamsPtr () const |
be careful: matrices will be ignored More... | |
virtual ilayerlist | getStructuralLayers () const |
Specifies which parameter vector forms a structural layer (in terms of a neural network) The ordering is important. More... | |
virtual iconnectionlist | getStructuralConnections () const |
Specifies which parameter matrix forms a connection between layers (in terms of a neural network) The orderning is not important. More... | |
virtual void | addInspectableValue (const iparamkey &key, iparamval const *val, const std::string &descr=std::string()) |
This is the new style for adding inspectable values. More... | |
virtual void | addInspectableMatrix (const iparamkey &key, const matrix::Matrix *m, bool only4x4AndDiag=true, const std::string &descr=std::string()) |
This is the new style for adding inspectable values. More... | |
virtual void | addInspectableDescription (const iparamkey &key, const std::string &descr) |
adds a description for the given parameter using info-lines The line will start (appart from the #I) with a D for description followed by the key end then followed by the string. More... | |
virtual void | addInfoLine (std::string infoLine) |
Adds an info line to this inspectable instance. More... | |
virtual void | addInfoLines (std::list< std::string > infoLineList) |
Adds a bunch of infolines with addInfoLine to this inspectable instance. More... | |
virtual void | removeInfoLines () |
Removes all infolines from this inspectable instance. More... | |
virtual const infoLinesList & | getInfoLines () const |
Returns all infolines added to this inspectable instance. More... | |
virtual void | addInspectable (Inspectable *insp) |
Adds an inspectable as a child object. More... | |
virtual void | removeInspectable (Inspectable *insp) |
Removes an inspectable as a child object. More... | |
virtual void | setNameOfInspectable (const iparamkey &name) |
set the name of the inspectable More... | |
virtual const iparamkey | getNameOfInspectable () const |
return the name of the inspectable, getName() would conflict with Configurable::getName() too often More... | |
virtual const inspectableList & | getInspectables () const |
Returns the list containing all inspectable children. More... | |
Static Public Member Functions | |
static bool | restore (int numberGeneration, std::map< int, RESTORE_GA_GENERATION * > &generationSet, std::map< int, std::vector< int > > &linkSet) |
restore all generation from a restore structure More... | |
Protected Attributes | |
int | m_generationNumber |
(int) The generation number (ID) More... | |
std::vector< Individual * > | m_individual |
(vector<Individual*>) The storage for the individuals, which are part of this generation. More... | |
int | m_size |
(int) The planed size of the generation. More... | |
int | m_numChildren |
(int) The number of children More... | |
![]() | |
iparamkey | name |
iparampairlist | mapOfValues |
imatrixpairlist | mapOfMatrices |
infoLinesList | infoLineStringList |
Additional Inherited Members | |
![]() | |
typedef std::string | iparamkey |
typedef double | iparamval |
typedef std::pair< iparamkey, iparamval const * > | iparampair |
typedef std::pair< iparamkey, std::pair< const matrix::Matrix *, bool > > | imatrixpair |
typedef std::list< iparamkey > | iparamkeylist |
typedef std::list< std::string > | infoLinesList |
typedef std::list< iparamval > | iparamvallist |
typedef std::list< iparamval const * > | iparamvalptrlist |
typedef std::list< iparampair > | iparampairlist |
typedef std::list< imatrixpair > | imatrixpairlist |
typedef struct Inspectable::ILayer | ILayer |
typedef struct Inspectable::IConnection | IConnection |
typedef std::list< ILayer > | ilayerlist |
typedef std::list< IConnection > | iconnectionlist |
typedef std::list< const Inspectable * > | inspectableList |
The Generation class.
This class is used for grouping some individuals which representing one step in the gen. alg. (called generation). For this it save all individual which are part of this generation. Also it have an Number like a ID, which make this generation individual.
All Generations inside the gen.alg. are only saved in the GenEngine.
Generation | ( | int | generationNumber, |
int | size, | ||
int | numChildren | ||
) |
constructor to create a Generation.
Information which the class need are the generation number, the size of it and how many individual don t come in the next generation (killRate).
generationNumber | (int) The ID of the Generation. |
size | (int) The Size of this Generation. Means how many individual are lives in this generation |
numChildren | (int) Number of individual which will be created by crossover |
|
virtual |
destructor to delete a GenContext.
void addIndividual | ( | Individual * | individual | ) |
This function insert an individual in the generation.
individual | (Individual*) the individual which should be insert in the generation |
void crossover | ( | RandGen * | random | ) |
This function makes an crossOver whit the existing individuals to become from the current size the planed size.
random | (RandGen*) a pseudo number generator. |
std::vector< double > * getAllFitness | ( | void | ) | const |
returns all fitness values from the individuals.
|
inline |
[inline], [const] This function gives all individual back.
std::string getAllIndividualAsString | ( | void | ) | const |
returns a string which represent all individual in this generation.
std::vector< Individual * > * getAllUnCalculatedIndividuals | ( | void | ) | const |
[inline], [const] This function gives all individual back which aren't have the fitness value calculated.
|
inline |
[inline], [const] This function gives the actual size (number of individuals inside the generation) back.
|
inline |
[inline], [const] This function gives the ID (number) of the generation back.
|
inline |
[individual], [const] This function gives one individual from this generation back.
x | (int) the index of the searched individual |
|
inline |
[inline], [const] This function gives the number of children back, which will be created by crossover.
|
inline |
[inline], [const] This function gives the size which is planed for this generation back.
|
static |
restore all generation from a restore structure
remember the individuals must be restored before
numberGeneration | (int) number of generations which should be restored |
generationSet | (map<int,RESTORE_GA_GENERATION*>) the structures which should be restored |
linkSet | (map<int,vector<int>>) the linkings between the generation and the individuals |
bool store | ( | FILE * | f | ) | const |
store a generation in a file
f | (FILE*) the file in which should be stored |
void update | ( | double | factor = 1.5 | ) |
This function updates the statistical values.
factor | (double) normal 1.5 Is needed for the data analysation |
|
protected |
(int) The generation number (ID)
|
protected |
(vector<Individual*>) The storage for the individuals, which are part of this generation.
(NO deleting)
|
protected |
(int) The number of children
|
protected |
(int) The planed size of the generation.