this repo has no description
1include "fzn_member_bool.mzn";
2include "fzn_member_bool_reif.mzn";
3
4%-----------------------------------------------------------------------------%
5% Requires that 'y' occurs in the array or set 'x'.
6%-----------------------------------------------------------------------------%
7
8predicate member_bool(array[int] of var bool: x, var bool: y) =
9 fzn_member_bool(x, y);