summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sygus/constant-dec-tree-bug.sy
blob: 7229dea2ee43aba14e1ad9e510b05f332145c2f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; EXPECT: unsat
; COMMAND-LINE: --sygus-out=status --sygus-unif-pi=complete

(set-logic SAT)
(synth-fun u ((x Int)) Int)
(synth-fun f () Bool)
(synth-fun g () Bool)
(synth-fun h () Bool)

(constraint (= (u 3) (+ (u 2) 2)))
(constraint f)
(constraint (not g))
(constraint h)

(check-synth)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback