-
How can I understand with which condition(s) is my algorithm terminated when I use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
So far, the termination does not store why the decision has been made. The easiest way of achieving this is by inheriting from
|
Beta Was this translation helpful? Give feedback.
So far, the termination does not store why the decision has been made. The easiest way of achieving this is by inheriting from
MultiObjectiveDefaultTermination
and storing the decision in the object itself.See the example below. Also, note that
cv_tol
is violated anytime for unconstrained problems to ensure the expression becomes false whenf_tol
is violated.