diff --git a/docs/source/algorithms.md b/docs/source/algorithms.md index 4b861fb8e..939aa1890 100644 --- a/docs/source/algorithms.md +++ b/docs/source/algorithms.md @@ -586,7 +586,7 @@ install estimagic. The algorithm supports the following options: - **local_algorithm** (str/callable): Any scipy local minimizer: valid options are. - "Nelder-Mead". "Powell". "CG". "BFGS". "Newton-CG". "L-BFGS-B". "TNC". "COBYLA". + "Nelder-Mead". "Powell". "CG". "BFGS". "Newton-CG". "L-BFGS-B". "TNC". "COBYLA". "SLSQP". "trust-constr". "dogleg". "trust-ncg". "trust-exact". "trust-krylov". or a custom function for local minimization, default is "L-BFGS-B". - **n_local_optimizations**: (int) The number local optimizations. Default is 100 as in scipy's default. diff --git a/docs/source/conf.py b/docs/source/conf.py index ea162d5de..fb8f336a9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -152,7 +152,9 @@ # List of notebooks that will not be executed. nb_execution_excludepatterns = [ # Problem with latex rendering - "/how_to_guides/miscellaneous/how_to_generate_publication_quality_tables", + "how_to_generate_publication_quality_tables.ipynb", + # too long runtime + "bootstrap_montecarlo_comparison.ipynb", ] # -- Options for HTML output ----------------------------------------------