Skip to content

Commit

Permalink
BUG: optimize: fix scipygh-10124
Browse files Browse the repository at this point in the history
  • Loading branch information
mdhaber authored and tylerjereddy committed Oct 22, 2019
1 parent 88da6ee commit 9ddfcfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/optimize/_linprog_ip.py
Expand Up @@ -561,7 +561,7 @@ def _display_iter(rho_p, rho_d, rho_g, alpha, rho_mu, obj, header=False):
float(rho_p),
float(rho_d),
float(rho_g),
float(alpha) if isinstance(alpha, numbers.Number) else alpha,
alpha if isinstance(alpha, str) else float(alpha),
float(rho_mu),
float(obj)))

Expand Down

0 comments on commit 9ddfcfc

Please sign in to comment.