summaryrefslogtreecommitdiff
path: root/test/regress/regress0/uflra/simple.04.cvc
blob: c9c226fa27c7be7eb8fda699b8de720f2472ae4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
% EXPECT: unsat
% EXIT: 20
x1, x2: REAL;
y1, y2: REAL;
f: REAL -> REAL;
g: (REAL, REAL) -> REAL;

ASSERT (x1 <= x2) AND (x2 <= x1);

ASSERT NOT (g(x1, y1) = g(x2, y2));

ASSERT (y1 <= f(x1)) AND (f(x1) <= y1);
ASSERT (y2 <= f(x2)) AND (f(x2) <= y2);

CHECKSAT;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback