summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/pre_ctn_no_skolem_share.smt2
blob: 87c7a8de75a1801d29cf6b9aaad749d6a445f586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(set-info :smt-lib-version 2.6)
(set-logic ALL)
(set-option :strings-exp true)
(set-option :strings-fmf true)
(set-info :status sat)
(declare-fun z () String)
(declare-fun n () Int)
(declare-fun y () String)

;(define-fun z () String "AB")
;(define-fun n () Int 0)
;(define-fun y () String "B")

(assert (not (=
(str.substr (str.substr z 0 n) 0 (str.indexof (str.substr z 0 n) y 0))
(str.substr z 0 (str.indexof z y 0))
)))

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