We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When calling passHessian, HiGHS does not take the objective sense into account when computing semi definiteness:
passHessian
julia> highs = Highs_create() Ptr{Nothing} @0x00007fea23874400 julia> Highs_addCol(highs, 0.0, 0.0, Inf, 0, C_NULL, C_NULL) 0 julia> Highs_changeObjectiveSense(highs, -1) 0 julia> Highs_passHessian( highs, 1, 1, 1, # kTriangular Cint[0], Cint[0], Cdouble[-2.0], ) ERROR: Hessian has 1 diagonal entries in [-2, 0) so is not positive semidefinite -1
The text was updated successfully, but these errors were encountered:
Thanks for flagging this up!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When calling
passHessian
, HiGHS does not take the objective sense into account when computing semi definiteness:The text was updated successfully, but these errors were encountered: