summaryrefslogtreecommitdiff
path: root/test/regress/regress0/uf/simple.03.cvc.smt2
blob: b3822c389e44eb9b39cc1c9c8a454dc96fd56b50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; EXPECT: unsat
(set-logic ALL)
(set-option :incremental false)
(declare-sort A 0)
(declare-sort B 0)
(declare-fun x () A)
(declare-fun y () A)
(declare-fun a () A)
(declare-fun b () A)
(declare-fun f (A) B)
(assert (or (and (= x a) (= y a)) (and (= x b) (= y b))))
(check-sat-assuming ( (not (= (f x) (f y))) ))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback