this repo has no description
1%-----------------------------------------------------------------------------%
2% Requires that 'y' is the ith element of the array 'x'.
3%-----------------------------------------------------------------------------%
4
5predicate element_set(var int: i, array[int] of var set of int: x,
6 var set of int: y) =
7 y = x[i];