summaryrefslogtreecommitdiff
path: root/test/regress/regress0/dump-unsat-core-full.smt2
blob: 3c68501f9b6de5ea16bfcb6383b2e7d45e681025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; REQUIRES: proof
; COMMAND-LINE: --dump-unsat-cores-full
; EXPECT: unsat
; EXPECT: (
; EXPECT: (and (= x y) (< x y))
; EXPECT: )
(set-logic QF_LIA)
(set-info :status unsat)
(declare-fun x () Int)
(declare-fun y () Int)
(assert (and (= x y) (< x y)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback