summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sym/q-function.smt2
blob: 6ab835e00b2c2ef5cb0813d82d160de65ec050d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(set-logic ALL)
(set-info :status unsat)
(declare-fun f (Int) Int)
(declare-fun g (Int) Int)
(declare-fun a () Int)
(declare-fun b () Int)
(declare-fun P (Int) Bool)
(declare-fun Q (Int) Bool)

(assert (or (forall ((x Int)) (P x)) (forall ((x Int)) (Q x))))
(assert (not (P a)))
(assert (not (Q a)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback