summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sym/q-constant.smt2
blob: 8649df2c7dceefe889d07ac98b9651114270778c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(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 c () Int)
(declare-fun P (Int) Bool)
(declare-fun Q (Int) Bool)
(declare-fun R (Int Int) Bool)

(assert (or (forall ((x Int)) (R x a)) (forall ((x Int)) (R x b))))
(assert (not (R c a)))
(assert (not (R c b)))

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