rust-lp-modeler icon indicating copy to clipboard operation
rust-lp-modeler copied to clipboard

add support for other model file formats than `.lp` (e.g. the `MPS` format)

Open dlaehnemann opened this issue 3 years ago • 5 comments

Issues #73 and #72 demonstrate that the .lp file format is not very clearly specified. It might thus be more stable to use other more clearly file formats for any solvers that allow this. For solvers from the COIN-OR Suite (including cbc, but also see: https://coin-or.github.io/user_introduction), the best format is probably OSIL and according to slide 8 in this COIN-OR presentation, .nl might be another option.

OSIL

"an open, XML-based format used by the Optimization Services framework of COIN-OR"

This seems to be a very rigorously specified and very powerful format and all the tools in COIN-OR can handle it. It would require using some Rust xml parsing library and implementing the specification with it: there are some good hints in this recent blog post, so probably strong-xml or yaserde would be good. So implementing the format will be more involved.

All relevant info is on this webpage, including a link to the original paper describing it and the current stable specification:

  • https://www.coin-or.org/OS/OSiL.html

.nl

"AMPL’s intermediate format that also supports non-linear modeling."

I guess, the complexity of implementing this would be somewhere in between the .lp file format and the OSIL .xml format. It might be a good compromise, as it seems that both COIN-OR and gurobi have capabilities of working with the .nl format.

Resources:

What do others think? Further format suggestions? Or objections?

dlaehnemann avatar Feb 19 '21 16:02 dlaehnemann

Just saw that minilp supports the MPS file format. So that would be something that shouldn't be too difficult to add or maybe simply move to a format parsing crate / module.

dlaehnemann avatar Feb 19 '21 18:02 dlaehnemann

As far as I know, MPS is well recognized by the main solvers (CBC, Gurobi, CPLEX...), such as LP. If it is better specified, MPS could be a good candidate.

jcavat avatar Feb 22 '21 09:02 jcavat

I asked over at CoinUtils -- seeing that they handle the COIN-OR file format handling, they should know which formats are widely used and well-specified: https://github.com/coin-or/CoinUtils/discussions/149

dlaehnemann avatar Feb 22 '21 18:02 dlaehnemann

One of the CoinUtils developers gave his perspective on MILP file formats: https://github.com/coin-or/CoinUtils/discussions/149#discussioncomment-401745

From it, I take it that he would agree with you, in that the MPS format is the most useful to support beyond LP at the moment.

dlaehnemann avatar Feb 24 '21 22:02 dlaehnemann

ok, thank you for your research. We can consider using multiple formats.

jcavat avatar Mar 01 '21 07:03 jcavat