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
Currently, failed factorizations are handled in the IPM solver via a try ... catch block that intercepts PosDefExceptions and increases regularizations.
It would be more flexible/general to have KKT.update! return a status code, which would be used to flag numerical issues, etc.
This would allow to do away with the try ... catch, which is not the most compiler-friendly approach.
The text was updated successfully, but these errors were encountered:
Currently, failed factorizations are handled in the IPM solver via a
try ... catch
block that interceptsPosDefException
s and increases regularizations.It would be more flexible/general to have
KKT.update!
return a status code, which would be used to flag numerical issues, etc.This would allow to do away with the
try ... catch
, which is not the most compiler-friendly approach.The text was updated successfully, but these errors were encountered: