summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2010-05-20 22:51:48 +0000
committerTim King <taking@cs.nyu.edu>2010-05-20 22:51:48 +0000
commit5321d62fce6c747fa9d11e9df5b2ef8c4e25de21 (patch)
tree87685c6a9f32d99f09de28a02fc80378a94b6ec9 /test
parentff70395fd3dcde9f68eda1c6a8bd70e6491f7458 (diff)
Added the division symbol to the parser, and minimal support for it in TheoryArith. Also directly hacked in support for theoryOf() to work for equalities where the left hand is a variable of type real.
Diffstat (limited to 'test')
-rw-r--r--test/regress/regress0/ite.smt27
1 files changed, 4 insertions, 3 deletions
diff --git a/test/regress/regress0/ite.smt2 b/test/regress/regress0/ite.smt2
index 0e171666f..99f170ff4 100644
--- a/test/regress/regress0/ite.smt2
+++ b/test/regress/regress0/ite.smt2
@@ -1,6 +1,7 @@
-(set-logic QF_LRA)
+(set-logic QF_UF)
(set-info :status unsat)
-(declare-fun x () Real)
-(declare-fun y () Real)
+(declare-sort U 0)
+(declare-fun x () U)
+(declare-fun y () U)
(assert (not (= x (ite true x y))))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback