this repo has no description
at develop 337 B view raw
1%-----------------------------------------------------------------------------% 2% Requires that 'y' occurs in the array of set 'x'. 3%-----------------------------------------------------------------------------% 4 5predicate fzn_member_set(array[int] of var set of int: x, var set of int: y) = 6 exists(i in index_set(x)) ( x[i] == y );