summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/str-code-unsat.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/strings/str-code-unsat.smt2')
-rw-r--r--test/regress/regress1/strings/str-code-unsat.smt216
1 files changed, 8 insertions, 8 deletions
diff --git a/test/regress/regress1/strings/str-code-unsat.smt2 b/test/regress/regress1/strings/str-code-unsat.smt2
index 6a3e9062b..118ab7750 100644
--- a/test/regress/regress1/strings/str-code-unsat.smt2
+++ b/test/regress/regress1/strings/str-code-unsat.smt2
@@ -4,17 +4,17 @@
(declare-fun y () String)
(declare-fun z () String)
-(assert (>= (str.code x) 65))
-(assert (<= (str.code x) 75))
+(assert (>= (str.to_code x) 65))
+(assert (<= (str.to_code x) 75))
-(assert (>= (str.code y) 65))
-(assert (<= (str.code y) 75))
+(assert (>= (str.to_code y) 65))
+(assert (<= (str.to_code y) 75))
-(assert (>= (str.code z) 65))
-(assert (<= (str.code z) 75))
+(assert (>= (str.to_code z) 65))
+(assert (<= (str.to_code z) 75))
-(assert (= (+ (str.code x) (str.code y)) 140))
-(assert (= (+ (str.code x) (str.code z)) 140))
+(assert (= (+ (str.to_code x) (str.to_code y)) 140))
+(assert (= (+ (str.to_code x) (str.to_code z)) 140))
(assert (distinct x y z))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback