summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/nt6-dd.smt2
blob: ad1e4edf5b863f8d55c0e0e1056123ae9e87291b (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.6)
(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