We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We are getting trouble with the following mps file: crash.zip
Using Cbc.exe (2.10.10) leads to a sol file containing
Status unknown - objective value 0.00000000
But using the C interface dll with the following code leads to a nullptr access in CBC_solve():
nullptr
CBC_solve()
Cbc_Model* model = CBC_newModel(); int error = CBC_readMps(model, "D:\\crash.mps"); if (error) { CBC_deleteModel(model); return; } error = CBC_solve(model); CBC_deleteModel(model);
Switching off presolve prevents the crash. But we cannot use this as workaround as we generate different problems.
Do you see other workarounds or is there a patch possible? Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We are getting trouble with the following mps file:
crash.zip
Using Cbc.exe (2.10.10) leads to a sol file containing
But using the C interface dll with the following code leads to a
nullptr
access inCBC_solve()
:Switching off presolve prevents the crash.
But we cannot use this as workaround as we generate different problems.
Do you see other workarounds or is there a patch possible?
Thanks
The text was updated successfully, but these errors were encountered: