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 4d9f987 commit 51e6114Copy full SHA for 51e6114
src/FileFormats/LP/read.jl
@@ -140,7 +140,7 @@ This function tries to be a little cleverer and doesn't allocate.
140
function _case_insenstive_identifier_to_keyword(input::String)
141
if !(3 <= length(input) <= 8)
142
return nothing # identifiers outside these lengths are not recognized
143
- elseif _compare_case_insenstive(input, 'm', _MAXIMIZE)
+ elseif _compare_case_insenstive(input, 'm', _MAXIMIZE_KEYWORDS)
144
return "MAXIMIZE"
145
elseif _compare_case_insenstive(input, 'm', _MINIMIZE_KEYWORDS)
146
return "MINIMIZE"
0 commit comments