I have a large .lp file exported from CPLEX that I want to read into JuMP with read_from_file
. However, the SOS constraints are defined in 2 lines each:
s3: S1 :: x : 1
y : 2
As a result, the parsing doesn’t get the second line and says the constraint is malformed. I can manually edit the file to get things on the same line, but perhaps the parsing can be more robust…
Here is where the error gets thrown: (LP.jl)
function _parse_section(
::typeof(_KW_SOS),
model::Model,
cache::_ReadCache,
line::AbstractString,
)
# SOS constraints can have all manner of whitespace issues with them.
# Normalize them here before attempting to do anything else.
line = replace(line, r"\s+:\s+" => ":")
line = replace(line, r"\s+::" => "::")
tokens = _tokenize(line)
if length(tokens) < 3
error("Malformed SOS constraint: $(line)")
end