summaryrefslogtreecommitdiff
path: root/test/regress/bug1.cvc
blob: d2c24a4380d6fee2addd02b7291f4d10ca2120a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
%% Regression level = 0
%% Result = Valid
%% Runtime = 1
%% Language = presentation
x : REAL;
y : REAL;
f : REAL -> REAL;
ASSERT ((x > y) => f(x) > f (y));
ASSERT (x = 3);
ASSERT (y = 2);
QUERY(f(x) > f (y));
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback