this repo has no description
1%-----------------------------------------------------------------------------%
2% Requires that 'y' occurs in the array or set 'x'.
3%-----------------------------------------------------------------------------%
4
5predicate fzn_member_float(array[int] of var float: x, var float: y) =
6 exists(i in index_set(x)) ( x[i] == y );