Replies: 1 comment 3 replies
-
The algorithm terminates because no feasible solution could be found. When you call the function as shown above you can set |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi there,
thank you for your great library. I was hoping to get an explanation on the behavirour of NSGA3 algorithm. To me it seems to me as bug, because the algorithm stops soone but is not providing a suitable solution.
I am trying to solve my problem defined as
I define the termination, algorithm
and then I run minimize function
res = minimize(problem, algorithm, termination, seed=1, return_least_infeasible=False, callback=callback, output = None, save_history=False, verbose=True)
The last output is
The algorithm stops already after 60 generations, but the
res.F
andX
is a 'NoneType'.Could anyone explain me the behavior?
Thank you very much!
Beta Was this translation helpful? Give feedback.
All reactions