nlopt
nlopt copied to clipboard
Savind all local minima found by global optimization algorithms
Suppose I am running a global optimizer, e.g. NLOPT_G_MLSL
. I know I can set an algorithm with which it polishes any local minima it finds by nlopt_opt_set_local_optimizer
. However, in the end, it returns the global minima. Is there a method to recover/save all the local minima, i.e. all the results from calling the local optimizer?
bump