summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug382.smt2
blob: c44c0ceb821048669afc61e91a6da8f79b350315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; EXPECT: sat
; EXPECT: ((x 0))
; EXPECT: ((x 0))
; EXPECT: (((f x) 0))
; EXPECT: (((f x) 0))
; EXIT: 10
(set-option :produce-models true)
(set-logic QF_UFLIA)
(declare-fun f (Int) Int)
(declare-fun x () Int)
(check-sat)
(get-value (x)); returns 0
(get-value (x)); returns 1 ?!
(get-value ((f x))); assert-fails in EqualityEngine
(get-value ((f x)))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback