Here is my question.
I'm dealing with one optimization problem using DEAP.
For now, I use toolbox.register("select", tools.selNSGA2)
to select some fittest indivual to survive.
But I want to add some threshold by user-defined function.
Can the algorithm achieve two step of selection?
Select several individuals by the tournament or selNSGA2 method
Eliminate several individuals by pre-defined thresholds.