summaryrefslogtreecommitdiff
path: root/test/regress/regress0/seq/seq-nth-uf-z.smt2
blob: 0ae8a702bafcab4579a675186ec46316f03da9f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
;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