Nelson-Meads optimizer #146
-
Hi, @benfulton. Your README says there ought to be the options OPTIMIZER_STRATEGY_INITIAL_VARIANTS and OPTIMIZER_STRATEGY_PERTURB_WHEN_CLOSE, yet these are not parameters with flags for the command line. Am I missing something? *Sorry, I obviously meant "Nelder-Mead" in the subject line. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Those are options available at compile-time for the optimizer. We didn't make them command line parameters because we didn't notice any particular improvement in the optimizer when using them, but they are still available. If you want to try them out, edit config.h and add
Or define the other one. Then rebuild the application and run the analysis. |
Beta Was this translation helpful? Give feedback.
Those are options available at compile-time for the optimizer. We didn't make them command line parameters because we didn't notice any particular improvement in the optimizer when using them, but they are still available. If you want to try them out, edit config.h and add
#define OPTIMIZER_STRATEGY_INITIAL_VARIANTS
Or define the other one. Then rebuild the application and run the analysis.