summaryrefslogtreecommitdiff
path: root/test/regress/regress0/ho/modulo-func-equality.smt2
blob: 8e300ac72d07cb840963676d29585d0857d0ef15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; COMMAND-LINE: --uf-ho
; EXPECT: unsat
(set-logic UFLIA)
(set-info :status unsat)
(declare-fun P (Int) Bool)
(declare-fun Q (Int) Bool)
(declare-fun R (Int) Bool)

(assert (or (= P Q) (= P R)))

(assert (not (Q 0)))
(assert (not (R 3)))

(assert (forall ((x Int)) (P x)))

(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback