-
Notifications
You must be signed in to change notification settings - Fork 85
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
ClpSimplex::getBasics() not available after barrier with crossover #251
Comments
Should be fixable. Can you give some code that you want to work. I
presume you had a message from -
printf("ClpSimplexPrimal or ClpSimplexDual must have been called
with correct startFinishOption\n");
so it may be as simple as setting a few options.
…On 11/12/2022 14:01, Marc Pfetsch wrote:
When I call ClpSimplex::barrier() with crossover, then |rowArray_| is
not available and thus |ClpSimplex::getBasics()| cannot be
successfully called. Indeed, |rowArray_| does not seem to be copied to
the original model.
Can this be (easily) fixed?
—
Reply to this email directly, view it on GitHub
<#251>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABWJYHG5RJ64FNCGS3GALZTWMXNDDANCNFSM6AAAAAAS27ZEKU>.
You are receiving this because you are subscribed to this
thread.Message ID: ***@***.***>
|
Indeed, I get the above message. It comes from a call from SCIP. I just call |
Example code:
|
clp->dual() would also give same error. clp->dual(0,1) where 1 is the value given to startFinishOptions is needed for dual. barrier does not have the option to pass in startFinishOptions. I should say did not have the option. I have just checked in modifications (master) to allow that. Inform me if the modifications don't work for you. |
Yes it works very well, thank you! |
When I call ClpSimplex::barrier() with crossover, then
rowArray_
is not available and thusClpSimplex::getBasics()
cannot be successfully called. Indeed,rowArray_
does not seem to be copied to the original model.Can this be (easily) fixed?
The text was updated successfully, but these errors were encountered: