summaryrefslogtreecommitdiff
path: root/test/regress/regress2/strings/replaceall-diffrange.smt2
blob: 507c972182758216f07571849520dbab3c5098e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
(set-info :smt-lib-version 2.6)
(set-logic ALL)
(set-info :status sat)
(set-option :strings-exp true)
(set-option :strings-fmf true)
(declare-fun x () String)
(declare-fun y () String)
(declare-fun z () String)
(declare-fun w () String)
(assert (= (str.len (str.replace_all x y z)) (+ (str.len (str.replace_all x y w)) 3)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback