summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/re-neg-concat-reduct.smt2
blob: cbe8c4a8bf7a310bb133ca79f9935716aa096994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(set-info :smt-lib-version 2.5)
(set-logic QF_S)
(set-info :status sat)
(set-option :strings-exp true)

(declare-fun x () String)

(assert (not (= x "")))
(assert (not (str.in.re x (re.++ (str.to.re "AB") (re.* (str.to.re "A"))))))
(assert (not (str.in.re x (re.++ (re.* (str.to.re "A")) (str.to.re "B")))))

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