Skip to content

Commit

Permalink
Small changes for tranquilo paper (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
janosg committed Dec 29, 2023
1 parent 50c15c3 commit b77deb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/estimagic/optimization/tranquilo.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from functools import partial
from estimagic.decorators import mark_minimizer

tranquilo_scalar = mark_minimizer(
tranquilo = mark_minimizer(
func=partial(_tranquilo, functype="scalar"),
name="tranquilo",
primary_criterion_entry="value",
Expand All @@ -24,6 +24,6 @@
is_global=False,
)

__all__ = ["tranquilo_scalar", "tranquilo_ls"]
__all__ = ["tranquilo", "tranquilo_ls"]
else:
__all__ = []

0 comments on commit b77deb8

Please sign in to comment.