-
Notifications
You must be signed in to change notification settings - Fork 93
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
Runtime Error when using Gurobi and Bound tightening #571
Comments
Hi @marcel-v , please try the latest master. should be fixed. |
Great, works! |
There appears to be another invalid access to the tableau internals when using Gurobi with this query, resulting in I am at latest commit eb93d44. |
Hi @marcel-v , I apologize for the inconvenience. A new Pr should fix these issues, and all the regression tests now pass with Gurobi on. |
Hi,
I observe an runtime error when running Marabou with this query when using --lp-solver gurobi and any bound tightening strategy, i.e., not using --tightening-strategy none.
I can trace the error to a bad access in
Tableau::updateVariableToComplyWithUpperBoundUpdate( unsigned int, double )
,specifically,
_variableToIndex[variable]
(Tableau.cpp:1770),see the stack.
At access time,
_variableToIndex
still points toNULL
.Commit is 492c1b8.
Thanks in advance for any feedback!
Best,
Marcel
The text was updated successfully, but these errors were encountered: