-
Hi everyone, I am using NSGA II to solve my problem. But it seems that the survival operator is not even called. The population stays over the 10 generations same as the first sampled population. In my algorithm I rewrote the crossover and mutation operators as follows:
The The This is the code I use for the optimization:
Can anyone help me with this problem? Why is the survival operator not called? To further check if the
THANKS A LOT! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Found the problem, it was here
Set it to |
Beta Was this translation helpful? Give feedback.
Found the problem, it was here
super().__init__(filter_infeasible=True)
Set it to
False
and it calls everything as it should