We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e5c9ed commit fdeaf06Copy full SHA for fdeaf06
mip/highs.py
@@ -792,7 +792,7 @@ def get_status(self: "SolverHighs") -> mip.OptimizationStatus:
792
self._lib.kHighsModelStatusModelEmpty: OS.OTHER,
793
self._lib.kHighsModelStatusOptimal: OS.OPTIMAL,
794
self._lib.kHighsModelStatusInfeasible: OS.INFEASIBLE,
795
- self._lib.kHighsModelStatusUnboundedOrInfeasible: OS.INFEASIBLE,
+ self._lib.kHighsModelStatusUnboundedOrInfeasible: OS.UNBOUNDED, # or INFEASIBLE?
796
self._lib.kHighsModelStatusUnbounded: OS.UNBOUNDED,
797
self._lib.kHighsModelStatusObjectiveBound: None,
798
self._lib.kHighsModelStatusObjectiveTarget: None,
0 commit comments