Termination with an expression of objectives #527
-
I am solving my discrete multi-objective problem with NSGA-II, it seems I have no control over when it terminates with a tolerance of say 0.00001, etc., when the result is still unsatisfactory. Is it possible to use an expression of objectivs as termination criteria? Please advise, thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes you have full control over termination and can write your own logic. I have coded up an example for you below where I am testing if the ideal point is below a specific value. The
I hope this helps. |
Beta Was this translation helpful? Give feedback.
Yes you have full control over termination and can write your own logic. I have coded up an example for you below where I am testing if the ideal point is below a specific value. The
MyTermination
overwrites the_update
method where you can return a 1 if terminated and a 0 otherwise.