summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/re-agg-total1.smt2
blob: 440a733b7f77b7462bad26ca0d938f1ff6078992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(set-info :smt-lib-version 2.6)
(set-logic QF_S)
(set-info :status unsat)
(set-option :strings-exp true)
(set-option :re-elim-agg true)
(declare-const x String)
(declare-const y String)


(assert (str.in.re x (re.* (str.to.re "ab") ) ) )
(assert (str.in.re x (re.* (str.to.re "abab") ) ) )
(assert (str.in.re x (re.* (str.to.re "ababac") ) ) )

(assert (> (str.len x)  1) )

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