summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug1.cvc
blob: d3d936381b8b8144efd4782c5301f91717eef039 (plain)
1
2
3
4
5
6
7
8
% EXPECT: VALID
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