-
Hi, I wonder if it is a Gurobi bug and how we can properly human-read such instances. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Dear Rui, You can use the Best, |
Beta Was this translation helpful? Give feedback.
Dear Rui,
You can use the
writeProblem()
method of PySCIPOpt to convert MPS format files into LP format files (example:model.writeProblem("file_name.lp")
; note that the extension "lp" is necessary). ThewriteLP()
method writes the current node's linear relaxation to a file (which is not needed here).Best,
Suresh