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