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 9838a63 commit 44d6c7fCopy full SHA for 44d6c7f
doc/release_notes.rst
@@ -9,6 +9,7 @@ Upcoming Version
9
* Fix the parsing of solutions returned by the CBC solver when setting a MIP duality
10
gap tolerance.
11
* Improve the mapping of termination conditions for the SCIP solver
12
+* Treat GLPK's `integer undefined` status as not-OK
13
14
Version 0.5.3
15
--------------
linopy/solvers.py
@@ -573,6 +573,7 @@ def solve_problem_from_file(
573
"""
574
CONDITION_MAP = {
575
"integer optimal": "optimal",
576
+ "integer undefined": "infeasible_or_unbounded",
577
"undefined": "infeasible_or_unbounded",
578
}
579
sense = read_sense_from_problem_file(problem_fn)
0 commit comments