summaryrefslogtreecommitdiff
path: root/test/regress/regress0/precedence/cmp-plus.cvc
blob: 54ee7b8f8cb1c18d6c4ee680dd8cf91344acbd11 (plain)
1
2
3
4
5
6
7
% EXPECT: entailed
% Simple test for right precedence of comparisons and plus/minus

x, y, z: INT;

QUERY (x + y - z > 0 AND 0 < x - y + z) <=> 
  ((((x + y) - z) > 0) AND (0 < ((x - y) + z)));
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback