Skip to content

Commit

Permalink
Fix wrong links
Browse files Browse the repository at this point in the history
  • Loading branch information
timmens committed Aug 26, 2024
1 parent 9b913fa commit 4e007cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/optimagic/deprecations.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def replace_and_warn_about_deprecated_multistart_options(options):
"The `convergence_relative_params_tolerance` option is deprecated and will "
"be removed in version 0.6.0. Use `convergence_xtol_rel` instead. For more "
"details see the documentation: "
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_convergence.html"
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_multistart.html"
)
warnings.warn(msg, FutureWarning)
if options.convergence_xtol_rel is None:
Expand All @@ -425,7 +425,7 @@ def replace_and_warn_about_deprecated_multistart_options(options):
"handling for exploration. Use the new `error_handling` option to set the "
"error handling for both optimization and exploration. For more details "
"see the documentation: "
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_error_handling.html"
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_multistart.html"
)
warnings.warn(msg, FutureWarning)
if options.error_handling is None:
Expand All @@ -438,7 +438,7 @@ def replace_and_warn_about_deprecated_multistart_options(options):
"handling for exploration. Use the new `error_handling` option to set the "
"error handling for both optimization and exploration. For more details "
"see the documentation: "
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_error_handling.html"
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_multistart.html"
)
warnings.warn(msg, FutureWarning)
if options.error_handling is None:
Expand Down

0 comments on commit 4e007cd

Please sign in to comment.