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