-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleaner integraiton of $z$ for HiGHS #11
Comments
@jajhall Do you know offhand if it's possible to update the Hessian with If it's not yet possible should still be able to use |
If you call For non-zero modifications of the Hessian, it has to be re-loaded using |
@jajhall This feature doesn't seem to be in highspy
|
So you need to be using
|
Damn, I'd missed off the |
As became apparent toward the end of #10, the way I've integrated$z$ into the model at the point of construction like
leads to code which is prone to bugs. It should be possible to do this instead by starting with the standard model and straight forwardly adding a variable
or by using
h.addCol
to add a column to the model, similar to howaddRow
is used to incorporate the conic approximations inEither way, the result should be code which is less error prone.
The text was updated successfully, but these errors were encountered: