You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some problems start with zero dual residual and keep zero dual residual until the first rho update. This makes QSS want to set rho to infinity. To mitigate this, QSS never sets rho higher than RHO_MAX, currently 1e6. However, in some cases even this is too high, and numerous refactorizations need to be done to bring rho back down to something reasonable.
Some problems start with zero dual residual and keep zero dual residual until the first
rho
update. This makes QSS want to setrho
to infinity. To mitigate this, QSS never setsrho
higher thanRHO_MAX
, currently1e6
. However, in some cases even this is too high, and numerous refactorizations need to be done to bringrho
back down to something reasonable.Example that has this kind of issue:
This can perhaps be partially fixed by making it so
rho
can never increase nor decrease by a factor of more than, say, 100 at a time.The text was updated successfully, but these errors were encountered: