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