Is there a way to save the instances generated by ecole.instance as mps file supported by PySCIPOpt #171
Answered
by
AntoinePrv
thupchnsky
asked this question in
Questions
-
|
Hi, I am trying to save the instances generated by ecole.instance.SetCoverGenerator as mps files beacuse I need them to be used by different algorithms for fair comparison. However, I dont find the direct write out method for these instances. I know that PySCIPOpt has method like |
Beta Was this translation helpful? Give feedback.
Answered by
AntoinePrv
Apr 26, 2021
Replies: 1 comment 8 replies
-
|
Hello,
model.write_problem("my-instance.mps")Or model.write_problem("my-instance.lp")... |
Beta Was this translation helpful? Give feedback.
8 replies
Answer selected by
thupchnsky
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
Model.write_problemwill forward toSCIPwriteOrigProblem, and the extension is detected by SCIP, so you canOr
...