I’m testing out the HiGHS optimizer in JuMP, and have found that HiGHS returns duals (they all seem to be 0) for MIPs. All other optimizers that I’ve used return errors when attempting to find duals of MIPs:
ERROR: AssertionError: !(model.last_solved_by_mip)
I guess my question is whether this is an oversight that will be corrected, or if HiGHS will return valid marginal costs at the MIP solution. (Without the need to fix the integer variables and re-solve.)
The reason that this matters (to me) is that I have code that attempts the fix and resolve approach, but only does so if the model didn’t have any valid duals. So my code thinks that HiGHS is returning valid duals, but it is not.
Thanks.