summaryrefslogtreecommitdiff
path: root/test/regress/regress0/seq/seq-nth-uf-z.smt2
blob: 6ab4293245be9fa27d8c969b4fcdf1a8c8017b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; COMMAND-LINE: --strings-exp
;EXPECT: unsat
(set-logic ALL)
(declare-fun a () (Seq Int))
(declare-fun b () (Seq Int))
(declare-fun x () Int)
(declare-fun y () Int)
(declare-fun z () Int)
(assert (or (= x z) (= y z)))
(assert (not (= (seq.nth a x) (seq.nth a z))))
(assert (not (= (seq.nth b y) (seq.nth b z))))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback