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
On Ubuntu 22.04.2 LTS.
Here is a model that produces two solutions, one right, one wrong.
include "globals.mzn"; var 1..1 union 3..3: B; var 2..3: C; array[int,int] of int: extension = [| 3,3,2,1, | 3,2,2,3, | 4,4,3,1, |]; constraint table([3,C,C,B],extension); output ["\([B,C])\n"]; % SOLUTIONS % [1,2] - wrong % [3,2] - right
The text was updated successfully, but these errors were encountered:
Check for duplicate variables in compact table, and unshare variables…
34adb07
… in the FlatZinc interface for table constraints. Fixes #167.
No branches or pull requests
On Ubuntu 22.04.2 LTS.
Here is a model that produces two solutions, one right, one wrong.
The text was updated successfully, but these errors were encountered: