-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can Smi read .cor with quadratic objective? #4
Comments
The Line 1358 in ac7a51c
If you copy this logic just below, and replace The basic concept is that the class |
Perhaps on a related note, in using the Smi library as a third-party library, I get a compile error:
For my part, it is easy enough to copy SmiQuadratic.hpp into the include/coin directory to fix the issue (I don't think I'm using any of the interface specified in SmiQuadratic.hpp itself, so if my hack is a bad solution, it may not show in my code). |
Yeah that will work .. is |
I have multiple COIN-OR git repositories in the directory named |
Most COIN-OR project |
Thanks. That helps. It looks like |
We have recently made major changes to the build system that are backwards in compatible. One of those changes was to start installing headers in @kingaj12 in one of the future Webinars, we'll have a tutorial about the new build system and we can move Smi |
I've added the install of |
Thanks @svigerske and @tkralphs for quick responses. And thanks @bcdandurand and @cheesecakeball for bringing this to our attention. And thanks GitHub for making such a nice platform for tracking issues! |
Hi,
I see that Smi has
SmiQuadratic.hpp
for quadratic objective function, and can solve QP through Clp. It is usingreadmps()
function in CoinMpsIO to read.cor
files. But inCoinMpsIO
, the quadratic objective information is read throughreadQuadraticMps()
. I did not find this function being called in Smi. My guess is that Smi cannot read.cor
with quadratic objective but can solve QP? I appreciate your help!The text was updated successfully, but these errors were encountered: