本文整理汇总了C++中population::reinit方法的典型用法代码示例。如果您正苦于以下问题:C++ population::reinit方法的具体用法?C++ population::reinit怎么用?C++ population::reinit使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类population
的用法示例。
在下文中一共展示了population::reinit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
std::vector<population::individual_type> best_kill_s_policy::select(population &pop) const
{
pagmo_assert(get_n_individuals(pop) <= pop.size());
// Gets the number of individuals to select
const population::size_type migration_rate = get_n_individuals(pop);
// Create a temporary array of individuals.
std::vector<population::individual_type> result;
// Gets the indexes of the best individuals
std::vector<population::size_type> best_idx = pop.get_best_idx(migration_rate);
// Puts the best individuals in results
for (population::size_type i =0; i< migration_rate; ++i) {
result.push_back(pop.get_individual(best_idx[i]));
}
// Remove them from the original population
// (note: the champion will still carry information on the best guy ...)
for (population::size_type i=0 ; i<migration_rate; ++i) {
pop.reinit(best_idx[i]);
}
return result;
}