Skip to content

Commit 0b9abfc

Browse files
authored
Fix undefined symbol GLP_EFA (#220)
1 parent 8c20ba2 commit 0b9abfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MOI_wrapper/MOI_wrapper.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1554,7 +1554,7 @@ function _raw_exact_string(status::Int32)
15541554
MOI.INVALID_MODEL,
15551555
"Unable to start the search, because some double-bounded (auxiliary or structural) variables have incorrect bounds.",
15561556
)
1557-
elseif status == GLP_EFA
1557+
elseif status == GLP_EFAIL
15581558
(MOI.INVALID_MODEL, "The problem instance has no rows/columns.")
15591559
elseif status == GLP_EITLIM
15601560
return (

0 commit comments

Comments
 (0)