13template<ProgramType T>
22 NSGA2(
bool surv=
false);
51 auto ind1 =
pop.individuals[i];
52 auto ind2 =
pop.individuals[j];
54 if (ind1->fitness.get_rank() < ind2->fitness.get_rank())
56 else if (ind1->fitness.get_rank() == ind2->fitness.get_rank() &&
57 ind1->fitness.crowding_dist > ind2->fitness.crowding_dist)
70 :
pop(population),
m(index) {};
74 return pop[i].fitness.get_wvalues()[
m] >
pop[j].fitness.get_wvalues()[
m]; };
void crowding_distance(Population< T > &, vector< vector< int > > &, int)
size_t tournament(Population< T > &pop, size_t i, size_t j) const
vector< size_t > survive(Population< T > &pop, int island, const Parameters &p)
survival according to the survival scheme of NSGA-II
vector< vector< int > > fast_nds(Population< T > &, vector< size_t > &)
vector< size_t > select(Population< T > &pop, int island, const Parameters &p)
selection according to the survival scheme of NSGA-II
The SelectionOperator class represents a base class for selection operators in a genetic algorithm.
< nsga2 selection operator for getting the front
bool operator()(int i, int j)
const Population< T > & pop
population address
comparator_obj(const Population< T > &population, int index)
bool operator()(int i, int j)
const Population< T > & pop
population address
sort_n(const Population< T > &population)