summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bug516.smt2
blob: 43d18575e2469a121d3de6eaf2b572842eacaaa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; COMMAND-LINE: --finite-model-find --fmf-bound-int -q
; EXPECT: sat
(set-logic ALL_SUPPORTED)
(set-info :status sat)
(set-option :incremental true)
(declare-fun P (Int) Bool)
(declare-fun ten () Int)

(assert (forall ((x Int)) (=> (<= 1 x ten) (P x))))

(push)
(assert (= ten 10))

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