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 bde3440 commit 796062cCopy full SHA for 796062c
src/FileFormats/LP/read.jl
@@ -138,7 +138,7 @@ every identifier.
138
This function tries to be a little cleverer and doesn't allocate.
139
"""
140
function _case_insenstive_identifier_to_keyword(input::String)
141
- if !(3 <= length(input) <= 8)
+ if !(2 <= length(input) <= 8)
142
return nothing # identifiers outside these lengths are not recognized
143
elseif _compare_case_insenstive(input, 'm', _MAXIMIZE_KEYWORDS)
144
return "MAXIMIZE"
0 commit comments