Skip to content

Commit

Permalink
MINUIT errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasheinrich committed Dec 22, 2020
1 parent f061a3f commit feda150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyhf/optimize/opt_minuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, *args, **kwargs):
tolerance (:obj:`float`): tolerance for termination. See specific optimizer for detailed meaning. Default is 0.1.
"""
self.name = 'minuit'
self.errordef = kwargs.pop('errordef', 1)
self.errordef = kwargs.pop('errordef', 0.5)
self.steps = kwargs.pop('steps', 1000)
self.strategy = kwargs.pop('strategy', None)
self.tolerance = kwargs.pop('tolerance', 0.1)
Expand Down

0 comments on commit feda150

Please sign in to comment.