Ted Ralphs
Ted Ralphs
See coin-or/Cbc#587.
Apparently, it works to do [this](https://github.com/coin-or/COIN-OR-OptimizationSuite/issues/6#issuecomment-2068570914).
Yes, there is an API, though it is not very well-documented. The command-line tool essentially just reads the MPS file and then passes the data in through the API. To...
I guess we could pretty easily just make a `solve()` function that would make everything more transparent. I will look at that.
My apologies for overlooking this issue until now. There was some small mistakes in the example that you pointed out. I fixed out and just tried to be sure. The...
So all the commits attributed to me were cherry-picked? What about the additional ones by you? I guess those were also cherry-picked?
OK, so should I merge this then?
I'm looking at this again now and I don't really understand how you approached this. We merged the changes from stable to master around 29 Nov 2019 in f19a5a5. I...
OK, but it's still the case that all the changes from `stable/1.2` were merged not that long ago. There haven't been a lot of commits since then. I don't see...
The seg fault was because the matrix you constructed was row-ordered, but MibS expects a column-ordered matrix for some reason. This is obviously not carefully documented and shouldn't be required...