summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/nt6-dd.smt2
blob: 30a0884a3f967bc81552fdc291271a1a63b5624c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; COMMAND-LINE: --strings-exp --re-elim
; EXPECT: sat
(set-info :smt-lib-version 2.5)
(set-logic ALL)
(set-info :status sat)
(declare-const resource_resource String)
(declare-const p1.0.resource Bool)

(assert (str.in.re resource_resource (re.++ (str.to.re "ab") (re.* re.allchar) (str.to.re "b") )))

(assert (= p1.0.resource (str.in.re resource_resource (re.++ (str.to.re "a") (re.* re.allchar) (str.to.re "b") ))))

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