-
Notifications
You must be signed in to change notification settings - Fork 261
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
add support for disjunction constraints #837
add support for disjunction constraints #837
Conversation
…scipopt into feature/disjunctive-constraint
@ctdunc Good changes! I think they add more functionality, and I am all for supporting more constraint classes. My current concern: The naming of Aside from that: The code looks good and just has some minor things to tidy up. |
Thanks @Opt-Mucca ! I chose ExprCons since every other Fwiw i also think it would make sense to have |
8beb978
to
7a76a68
Compare
…ySCIPOpt into feature/disjunctive-constraint
This reverts commit ddfe540.
@ctdunc Thanks for this merge request! This is a really cool feature. I've changed some minor things that I raised earlier. I renamed the function I'll now merge the branch! For your comment on adding a cons with a Python object: I agree. Given that users can now create a constraint object easily, they should be able to pass it as an option to |
Looks great! Thanks for including :) Have been a bit tied up with other project at work, but hoping to get back to this soon. If my understanding of this is wrong, please LMK as I have more features I would like to attempt to contribute & want to avoid this type of confusion going forward. Thanks :) |
You're understanding is correct! A SCIP pointer is in general always required, and therefore does handicap creating Python objects independently. Very happy for any other contributions when you have the time (I will get to the user defined decompositions in the next week or two) |
Adds preliminary support for disjunctive constraints, and new methods for creating constraints without adding them to the problem itself.
Long-term, it may be nice to have a slate of methods like
createCons<T>()
which create constraints without adding them to the problem, and.addCons<T>(<T>)
methods which can take constraints as inputs, so that we can add more support for compound constraint creation methods like conjunction,