-
Notifications
You must be signed in to change notification settings - Fork 14
Add add_cons_local, add_cons_node #230
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
Conversation
@Joao-Dionisio happy to see you here :) Unlike PySCIPOpt one could here call the SCIP api directly from the
|
I think in this case an |
Same, that's what made me question russcip's philosophy :) Just need to grab the local model from the node, but it should be okay EDIT: on the other hand, I'm not seeing how to access the local scip EDIT2: Should be mostly done. Just need to add a test, which will be a bit annoying because of the branching requirement... unless it's enough to test if adding at the root node is enough 🤔 |
I think these need to be only on |
Wait @mmghannam , did you manage to fix the underlying problem? Why wasn't |
The function was working with the use of |
Still not done, want to take my time to make things properly, as in adding tests and actually understanding what chatGPT combined with Rust's compiler have created. Ah, and probably want to create the constraint directly on the function, and also want to add add_cons_node.
@mmghannam a question about the russcip philosophy. Is it like PySCIPOpt where you want to mimic SCIP as much as possible?