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
I seem to understand that it is not possible to multiply decision variables within a constraint (e.g., x * y >= 1).
x * y >= 1
Please correct me if I am wrong (by showing me how), or consider adding such a feature.
The text was updated successfully, but these errors were encountered:
you will need to implement support for indicator constraints (https://www.ibm.com/docs/en/icos/20.1.0?topic=cpxxaddindconstr-cpxaddindconstr) for MIPs, or add support for QPs for generalized multiplication support (e.g. https://www.ibm.com/docs/en/icos/20.1.0?topic=cpxxaddqconstr-cpxaddqconstr) which may require multiple callback implementations because the current implementation assumes MIP construction if I remember correctly.
Sorry, something went wrong.
No branches or pull requests
I seem to understand that it is not possible to multiply decision variables within a constraint (e.g.,
x * y >= 1
).Please correct me if I am wrong (by showing me how), or consider adding such a feature.
The text was updated successfully, but these errors were encountered: