Skip to content
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

Merged
merged 20 commits into from
May 3, 2024

Conversation

ctdunc
Copy link
Contributor

@ctdunc ctdunc commented Apr 3, 2024

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,

@Opt-Mucca Opt-Mucca self-requested a review April 5, 2024 09:19
@Opt-Mucca
Copy link
Collaborator

@ctdunc Good changes! I think they add more functionality, and I am all for supporting more constraint classes.

My current concern: The naming of createExprCons. An ExprCons is already technically created by the user when calling such a function. The function is rather creating a PySCIPOpt Constraint object. I feel like the name createCons will lead to a lot of confusion though. I am concerned about users using such a function and then trying to call addCons with the resulting object. I will need to discuss with @mmghannam and @Joao-Dionisio

Aside from that: The code looks good and just has some minor things to tidy up.

@ctdunc
Copy link
Contributor Author

ctdunc commented Apr 10, 2024

Thanks @Opt-Mucca ! I chose ExprCons since every other addCons<T> method also creates a python Constraint object. This one creates a constraint from an expression. I am not particularly attached to this naming convention. Maybe something like createConsFromExpr would work?

Fwiw i also think it would make sense to have addCons accept a python object as an input rather than an expression (especially as more support for composed constraints is introduced) to be more consistent with the naming convention of other methods. However this would be a significant breaking change.

@ctdunc ctdunc force-pushed the feature/disjunctive-constraint branch 2 times, most recently from 8beb978 to 7a76a68 Compare April 11, 2024 23:11
@Opt-Mucca
Copy link
Collaborator

@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 createExprCons, and moved some of what I believe were leftover debug stuff.

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 addCons. This goes on the TODO list.

@Opt-Mucca Opt-Mucca merged commit 60ec985 into scipopt:master May 3, 2024
1 check passed
@ctdunc
Copy link
Contributor Author

ctdunc commented May 3, 2024

Looks great! Thanks for including :) Have been a bit tied up with other project at work, but hoping to get back to this soon.
Having had a bit more time to dig around in getting user-provided decompositions working, I agree with these name changes. Since the underlying SCIP structures typically require a pointer to a SCIP problem, it doesn't really make sense to allow users to create python objects independently of a SCIP Model().

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 :)

@Opt-Mucca
Copy link
Collaborator

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants