summaryrefslogtreecommitdiff
path: root/test/regress/regress0/cvc3-bug15.cvc
blob: aaebeebd681a801fb6a7201a972417049720f27d (plain)
1
2
3
4
5
6
7
8
9
10
%% This test borrowed from CVC3 regressions, bug15.cvc
% 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));
% EXIT: 20
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback