You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ cat foo.mzn
include "globals.mzn";
array[1..2,1..2] of var 1..2: x;
constraint member(x[1,..], 2) <-> member(x[2,..], 2);
$ minizinc foo.mzn
x =
[| 1, 1
| 1, 1
|];
----------
$ findMUS foo.mzn
/opt/MiniZincIDE-2.6.0-bundle-linux-x86_64/share/minizinc/std/member.mzn:28.2-21:
flattening error: 'fzn_member_int' is used in a reified context but no reified version is available
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: