summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug382.smt2
blob: c296fe1c79c26f615325308e3f34dbf1bca39923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; EXPECT: sat
; EXPECT: ((x 0))
; EXPECT: ((x 0))
; EXPECT: (((f x) 0))
; EXPECT: (((f x) 0))
(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