Skip to content

Commit

Permalink
Update default PivOptions parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
QBatista authored Apr 23, 2021
1 parent 7322983 commit 7365960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantecon/optimize/linprog_simplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
PivOptions = namedtuple(
'PivOptions', ['fea_tol', 'tol_piv', 'tol_ratio_diff']
)
PivOptions.__new__.__defaults__ = (1e-6, 1e-10, 1e-15)
PivOptions.__new__.__defaults__ = (1e-6, 1e-7, 1e-13)


@jit(nopython=True, cache=True)
Expand Down

0 comments on commit 7365960

Please sign in to comment.