summaryrefslogtreecommitdiff
path: root/test/regress/regress1/quantifiers/issue3765.smt2
blob: 97e10636573a5761c88d5f4dbcd41712cadbf485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; COMMAND-LINE: --fmf-fun --no-check-models
; EXPECT: sat

(set-info :smt-lib-version 2.5)
(set-option :produce-models true)
(set-logic ALL)
(define-funs-rec (
(f11((va9 Int))Int)
(f3((v1f Int))Int)
)
( (f3 (ite (= 0 va9) (- 1) (div (- 1) va9)))
 (- (ite (= 0 v1f) 0 (mod 0 v1f))) 
))
(declare-fun v18d() Int)
(assert (= 0 (f11 v18d)))
(assert (= 22 v18d))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback