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
Add an interface to HiGHS as a QP solver for positive semi-definite Hessians. We'll then be able to run Uno's SQP method with convexification.
It was interfaced as LP solver in #72. For QPs, it's a bit trickier because HiGHS expects a compressed sparse Hessian in one of the following shapes:
column-wise lower triangular;
row-wise upper triangular.
At the moment, the CSC sparse format in Uno is only column-wise upper triangular (a la ASL). I need to write the transpose using @amontoison's function.
The text was updated successfully, but these errors were encountered:
Add an interface to HiGHS as a QP solver for positive semi-definite Hessians. We'll then be able to run Uno's SQP method with convexification.
It was interfaced as LP solver in #72. For QPs, it's a bit trickier because HiGHS expects a compressed sparse Hessian in one of the following shapes:
At the moment, the CSC sparse format in Uno is only column-wise upper triangular (a la ASL). I need to write the transpose using @amontoison's function.
The text was updated successfully, but these errors were encountered: