summaryrefslogtreecommitdiff
path: root/test/regress/regress0/dump-unsat-core-full.smt2
blob: a21508efb6cb88bd5b92677cb034221c556c65df (plain)
1
2
3
4
5
6
7
8
9
10
11
; 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