本文整理汇总了C++中Population::GetChildrenSize方法的典型用法代码示例。如果您正苦于以下问题:C++ Population::GetChildrenSize方法的具体用法?C++ Population::GetChildrenSize怎么用?C++ Population::GetChildrenSize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Population
的用法示例。
在下文中一共展示了Population::GetChildrenSize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: while
void
Strategies::GenerationalMixing( Population &pop ) {
/* Put all adults in child pool */
while ( pop.GetAdults().size() > 0 ) {
pop.GetChildren().push_back( pop.GetAdults().back() );
pop.GetAdults().pop_back();
}
/* Clear adults */
pop.GetAdults().clear();
/* Select adults with equal probability */
while ( pop.GetAdults().size() < pop.GetChildrenSize() ) {
pop.GetAdults().push_back( pop.GetChildren().at( rand() % pop.GetChildrenSize() ) );
}
/* Clear children */
pop.GetChildren().clear();
}
示例2: Elitism
void
Strategies::TournamentSelection( Population &pop ) {
/* Take care of elitism first */
Elitism( pop );
float crossover_rate = pop.GetCrossoverRate();
std::vector<Individual> group_a;
std::vector<Individual> group_b;
while ( pop.GetChildren().size() < pop.GetChildrenSize() ) {
unsigned int selector;
/* Reproduce or clone best individual */
if( rand()/RAND_MAX <= crossover_rate ) {
/* select individuals for group a */
for (unsigned int i = 0; i<pop.GetTournamentSize(); i++) {
while( group_a.size() < pop.GetTournamentSize() ) {
selector = rand() % pop.GetAdults().size();
group_a.push_back( pop.GetAdults().at( selector ) );
pop.GetAdults().erase( pop.GetAdults().begin() + selector );
}
}
float temp_fit=0;
/* Find best individual in group a */
unsigned int best_in_a=0;
for ( unsigned int i = 0; i < group_a.size(); i++ ) {
if ( temp_fit < group_a.at(i).GetFitness() ) {
best_in_a = i;
temp_fit = group_a.at(i).GetFitness();
}
}
/* select individuals for group b */
unsigned int selector;
for (unsigned int i = 0; i<pop.GetTournamentSize(); i++) {
while( group_b.size() < pop.GetTournamentSize() ) {
selector = rand() % pop.GetAdults().size();
group_b.push_back( pop.GetAdults().at( selector ) );
pop.GetAdults().erase( pop.GetAdults().begin() + selector );
}
}
/* Find best individual in group b */
unsigned int best_in_b=0;
for ( unsigned int i = 0; i < group_b.size(); i++ ) {
if ( temp_fit < group_b.at(i).GetFitness() ) {
best_in_b = i;
temp_fit = group_b.at(i).GetFitness();
}
}
pop.GetChildren().push_back( group_a.at( best_in_a ).Reproduce( group_b.at( best_in_b ) ) );
pop.GetChildren().push_back( group_b.at( best_in_b ).Reproduce( group_a.at( best_in_a ) ) );
}
else{
/* select individuals for group 1 */
for (unsigned int i = 0; i<pop.GetTournamentSize(); i++) {
while( group_a.size() < pop.GetTournamentSize() ) {
selector = rand() % pop.GetAdults().size();
group_a.push_back( pop.GetAdults().at( selector ) );
pop.GetAdults().erase( pop.GetAdults().begin() + selector );
}
}
/* Find best individual */
unsigned int best_in_a=0;
float temp_fit=0;
for ( unsigned int i = 0; i < group_a.size(); i++ ) {
if ( temp_fit < group_a.at(i).GetFitness() ) {
best_in_a = i;
temp_fit = group_a.at(i).GetFitness();
}
}
pop.GetChildren().push_back( group_a.at( best_in_a ) );
}
for ( unsigned int i = 0; i<group_a.size(); i++)
pop.GetAdults().push_back(group_a.at(i));
group_a.clear();
for ( unsigned int i = 0; i<group_b.size(); i++)
pop.GetAdults().push_back(group_b.at(i));
group_b.clear();
}
}