-
Notifications
You must be signed in to change notification settings - Fork 35
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
Problems returning dual variables ? #50
Comments
The duals for linear optimization (Clp) and integer optimization (Cbc) are quite different, and so Cbc doesn't return any dual information (besides bounds on the objective function). |
Hey Joey!
Thanks. I thought Cbc would work as a linear solver in the absence of
integer variables..
Best,
2018-01-11 11:56 GMT-02:00 Joey Huchette <notifications@github.com>:
… Closed #50 <#50>.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#50 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AS7JVsvlhyAgUmXgiWIfM0lHRt_UUaQ2ks5tJhMGgaJpZM4Ra2aB>
.
--
Pedro Henrique Borges de Melo
|
It will, but it still won't provide dual information. If you're certain your problem is an LP, you should just pass it to Clp instead. |
It's possible that duals are actually provided through the CBC C API, but we haven't hooked them up if they are. |
I gave it a cursory look before and didn’t see anything, but I could’ve
missed it.
…On Thu, Jan 11, 2018 at 7:49 PM Miles Lubin ***@***.***> wrote:
It's possible that duals are actually provided through the CBC C API, but
we haven't hooked them up if they are.
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#50 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ABTzUtHCI7gz0uywdunTcVF4LDxJeODCks5tJqwmgaJpZM4Ra2aB>
.
|
Hey Guys!
I have problems here taking the dual variables when using CbcSolver()
When I use ClpSolver(), everything goes fine..
Do we have a problem with CbcSolver?
Thanks,
The text was updated successfully, but these errors were encountered: