summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/fmf002.smt2
blob: d52dae2d2b1476985b71fcd5a52c846497f94c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(set-logic QF_S)
(set-option :strings-exp true)
(set-option :strings-fmf true)
(set-info :status sat)

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

(assert (str.in.re x
                (re.+ (re.range "a" "c"))
				                ))

(assert (= x (str.++ y "c" z "b")))
(assert (> (str.len z) 1))

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