summaryrefslogtreecommitdiff
path: root/test/regress/regress2/strings/issue3203.smt2
blob: 89c2038897cfb3ff90209725310a17b772cc0d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(set-logic ALL_SUPPORTED)
(set-option :strings-exp true)
(set-info :status unsat)
(declare-fun a () String)
(declare-fun b () String)
(declare-fun d () String)
(declare-fun e () String)
(declare-fun f () Int)
(declare-fun g () String)
(declare-fun h () String)
(assert (or 
            (not (= ( str.replace "B" ( str.at "A" f) "") "B")) 
            (not (= ( str.replace "B" ( str.replace "B" g "") "") 
                    ( str.at ( str.replace ( str.replace a d "") "C" "") ( str.indexof "B" ( str.replace ( str.replace a d "") "C" "") 0))))))
(assert (= a (str.++ (str.++ d "C") g)))
(assert (= b (str.++ e g)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback