Meaning of certain termination criteria #400
-
Hello everyone! However, I have a question regarding the termination criteria. Due to homepage information I use the following setup for my problem (copied the code from there):
Hereby, I have problems with understanding the termination criteria. The description on the homepage says:
Unfortunately, those are not the same as given in the example. So, what are 'period', and 'n_skip' (is 'n_skip' the same as 'n_last')? The rest of the bullet point list seems not to work in the classes that are used in the example. More generally: I assume, that Objective Space Tolerance is the right one for me to choose, but I don't see where I can find detailled information on how to control this tolerance. Any help will be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You are right the documentation is not up to date here. Can you create an issue that it gets some priority in the next version to be updated?
You can also directly use the default termination by not providing any parameter (it can be better to play with some parameters though). |
Beta Was this translation helpful? Give feedback.
You are right the documentation is not up to date here. Can you create an issue that it gets some priority in the next version to be updated?
period
means the number of last generations (before calledn_last
) to be considered.n_skip
means how many generations are skipped until termination is checked again.You can also directly use the default termination by not providing any parameter (it can be better to play with some parameters though).