summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/fmf002.smt2
blob: 14f50c710f0c2b9dc35d30bf7b8daa5c2d3f9b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(set-logic QF_S)
(set-option :fmf-strings 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