Skip to content

Commit 9fa1b1d

Browse files
ntadejkratsg
authored andcommitted
fix: iminuit optimiser is never verbose (#724)
- minuit optimiser verbosity is now configurable instead of hard-coded off
1 parent c145fd5 commit 9fa1b1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyhf/optimize/opt_minuit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self, verbose=False, ncall=10000, errordef=1, steps=1000):
1818
verbose (`bool`): print verbose output during minimization
1919
2020
"""
21-
self.verbose = 0
21+
self.verbose = verbose
2222
self.ncall = ncall
2323
self.errordef = errordef
2424
self.steps = steps

0 commit comments

Comments
 (0)