summaryrefslogtreecommitdiff
path: root/test/regress/regress2/strings/issue3203.smt2
blob: 6d4064ad5dd9c12c1196ca48c5359113c6b89090 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; Temporarily disable checking of unsat cores (see issue #3606)
; COMMAND-LINE: --no-check-unsat-cores
(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