summaryrefslogtreecommitdiff
path: root/test/regress/regress0
diff options
context:
space:
mode:
authorTianyi Liang <tianyi-liang@uiowa.edu>2014-01-17 17:56:08 -0600
committerTianyi Liang <tianyi-liang@uiowa.edu>2014-01-18 11:10:40 -0600
commit368e2945a871e16bdf2f3a26a401b9d157240a9d (patch)
treef5201f5c43f36b581b830ba291c80828a67ae6ad /test/regress/regress0
parent0d2c0a0c5a07479cadc5ba54e5f6258f1964d1e0 (diff)
strings with new ideas
Diffstat (limited to 'test/regress/regress0')
-rw-r--r--test/regress/regress0/strings/at001.smt24
1 files changed, 2 insertions, 2 deletions
diff --git a/test/regress/regress0/strings/at001.smt2 b/test/regress/regress0/strings/at001.smt2
index 855957430..616189d96 100644
--- a/test/regress/regress0/strings/at001.smt2
+++ b/test/regress/regress0/strings/at001.smt2
@@ -5,8 +5,8 @@
(declare-fun i () Int)
(assert (= (str.at x i) "b"))
-(assert (> i 5))
-(assert (< (str.len x) 4))
+(assert (and (>= i 4) (< i (str.len x))))
+(assert (< (str.len x) 7))
(assert (> (str.len x) 2))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback