Skip to content

Commit

Permalink
hotfix: print_iter is broken with new AbstractKKTVector (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
frapac committed Jun 8, 2022
1 parent 61165c2 commit 58c8a49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IPM/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function print_iter(ips::AbstractInteriorPointSolver;is_resto=false)
is_resto ? ips.RR.inf_pr_R : ips.inf_pr,
is_resto ? ips.RR.inf_du_R : ips.inf_du,
is_resto ? log(10,ips.RR.mu_R) : log(10,ips.mu),
ips.cnt.k == 0 ? 0. : norm(ips.dx,Inf),
ips.cnt.k == 0 ? 0. : norm(primal(ips.d),Inf),
ips.del_w == 0 ? " - " : @sprintf("%5.1f",log(10,ips.del_w)),
ips.alpha_z,ips.alpha,ips.ftype,ips.cnt.l))
return
Expand Down

0 comments on commit 58c8a49

Please sign in to comment.