summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/ncontrib-rewrites.smt2
blob: 6b2e68794db403225dfd75b1cc0d016dab88cd4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(set-logic ALL)
(set-info :status unsat)
(declare-fun x () String)
(declare-fun y () String)
(declare-fun z () String)

(assert (or

(not (= (str.replace (str.++ x x) "A" "B") (str.replace x "" (str.replace x "A" "B"))))

(not (= (str.replace (str.++ x y "B" x y) "A" z) (str.++ (str.replace (str.++ x y) "A" z) "B" x y)))

))

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