summaryrefslogtreecommitdiff
path: root/test/regress/regress1/ho/issue4134-sinf.smt2
blob: e87845fabeb74c200580260c99ac1ec12b5d02e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; COMMAND-LINE: --uf-ho --sort-inference --no-check-models
; EXPECT: sat
(set-logic ALL)
(set-option :uf-ho true)
(set-option :sort-inference true)
(set-info :status sat)
(declare-fun a () Int)
(declare-fun b (Int) Int)
(declare-fun c (Int) Int)
(declare-fun d (Int) Int)
(assert (distinct d (ite (= a 0) b c)))
(assert (= (d 0) 0))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback