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