Skip to content

Commit 51e6114

Browse files
committed
Update
1 parent 4d9f987 commit 51e6114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FileFormats/LP/read.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ This function tries to be a little cleverer and doesn't allocate.
140140
function _case_insenstive_identifier_to_keyword(input::String)
141141
if !(3 <= length(input) <= 8)
142142
return nothing # identifiers outside these lengths are not recognized
143-
elseif _compare_case_insenstive(input, 'm', _MAXIMIZE)
143+
elseif _compare_case_insenstive(input, 'm', _MAXIMIZE_KEYWORDS)
144144
return "MAXIMIZE"
145145
elseif _compare_case_insenstive(input, 'm', _MINIMIZE_KEYWORDS)
146146
return "MINIMIZE"

0 commit comments

Comments
 (0)