summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sym/q-constant.smt2
blob: b8fee6c8dd6cf666f4cacbc5c082b45b861a3557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; COMMAND-LINE: --symmetry-breaker-exp
(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