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