summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/fmf002.smt2
blob: 8daaa6ee46e556e4a20918f5e321defaedeff8f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(set-info :smt-lib-version 2.6)
(set-logic QF_SLIA)
(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