summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sym/q-function.smt2
blob: 3e303106e22a3805ff778064754a8feeef44d79d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; 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 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