summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/re-neg-concat-reduct.smt2
blob: 0f20f80a37dd6c5b012b39120bc839eb78a7c090 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(set-info :smt-lib-version 2.6)
(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