summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sygus/no-flat-simp.sy
blob: 42b73394b750772d834bfad5bd50807a38967a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; EXPECT: unsat
; COMMAND-LINE: --lang=sygus2 --sygus-out=status

(set-logic LIA)

(synth-fun f ((x Int) (y Int)) Int
    ((Start Int))
    ((Start Int (x
                 y
                 0
                 (- Start Start)
                 (+ Start (+ Start Start))))))

(declare-var x Int)
(declare-var y Int)

(constraint (= (f x y) (+ x y)))

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