summaryrefslogtreecommitdiff
path: root/test/regress/regress3/issue4170.smt2
blob: 0dee146c0bb0e0a805cc3829f0d4a9ee888df49c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(set-logic ALL)
(set-option :sygus-inference true)
(set-option :uf-ho true)
(set-option :sygus-ext-rew false)
(set-info :status sat)
(declare-fun a (Int) Int)
(declare-fun b (Int) Int)
(declare-fun c (Int) Int)
(declare-fun d () Int)
(assert (distinct a (ite (= d 0) b c)))
(assert (= (a 0) 4))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback