summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/reloop.smt2
blob: 6230d1656c615f638dce4dcf56370abfe7d8b894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(set-info :smt-lib-version 2.5)
(set-logic QF_SLIA)
(set-option :strings-exp true)
(set-info :status sat)

(declare-fun x () String)
(declare-fun y () String)
(declare-fun z () String)
(declare-fun w () String)

(assert (str.in.re x ((_ re.^ 5) (str.to.re "a"))))
(assert (str.in.re y ((_ re.loop 2 5) (str.to.re "b"))))
(assert (str.in.re z ((_ re.loop 5 15) (str.to.re "c"))))
(assert (> (str.len z) 7))
(assert (str.in.re w ((_ re.loop  2 7) (str.to.re "b"))))
(assert (> (str.len w) 2))
(assert (< (str.len w) 5))

(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback