summaryrefslogtreecommitdiff
path: root/test/regress/regress0/simple-dump-model.smt2
blob: 20b82690f780598337e913bd55bd0ac5417a4733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; COMMAND-LINE: --dump-models
; EXPECT: sat
; EXPECT: (
; EXPECT: (define-fun x () Int 1)
; EXPECT: (define-fun y () Int 1)
; EXPECT: )
(set-logic QF_LIA)
(set-info :status sat)
(declare-fun x () Int)
(declare-fun y () Int)
(assert (and (<= x y) (> x 0)))
(assert (= y 1))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback