summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/partial-trigger.smt2
blob: beea57bdb3104bf1dc71c11f273a093f403491fa (plain)
1
2
3
4
5
6
7
8
9
10
; COMMAND-LINE: --partial-triggers
; EXPECT: unsat
(set-logic ALL_SUPPORTED)
(set-info :status unsat)
(declare-fun P (Int) Bool)
(assert (forall ((x Int) (y Int)) (=> (> y 6) (or (> x y) (P x)))))

(assert (not (P 5)))

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