summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bug593.smt2
blob: 2c28bb47cf542962c611665800062ebad92dafc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(set-logic QF_UFBV)
(set-info :status unsat)

(declare-sort A 0)

(declare-fun f ((_ BitVec 1)) A)
(declare-fun g (A) (_ BitVec 1))

(declare-fun x () A)
(declare-fun y () A)
(declare-fun z () A)
 
(assert (and
 
(not (= (f (g x)) (f (g y))))
(not (= (f (g x)) (f (g z))))
(not (= (f (g y)) (f (g z))))))
  
(check-sat)

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback