summaryrefslogtreecommitdiff
path: root/test/regress/regress0/cvc3-bug15.cvc
blob: 779a2eab43ba3b05866cc5334fc8dfb680d1ced4 (plain)
1
2
3
4
5
6
7
8
9
%% This test borrowed from CVC3 regressions, bug15.cvc
% EXPECT: entailed
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