summaryrefslogtreecommitdiff
path: root/test/regress/regress1/rr-verify/bv-term-32.sy
blob: 9dfb19451a87ba103a4cad2236c99c17a0ca9f73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
; COMMAND-LINE: --lang=sygus2 --sygus-rr --sygus-samples=1000 --sygus-abort-size=1 --sygus-rr-verify-abort --no-sygus-sym-break
; EXPECT: (error "Maximum term size (1) for enumerative SyGuS exceeded.")
; SCRUBBER: grep -v -E '(\(define-fun|\(candidate-rewrite)'
; EXIT: 1

(set-logic BV)

(synth-fun f ((s (_ BitVec 32)) (t (_ BitVec 32))) (_ BitVec 32)
  ((Start (_ BitVec 32)))
  (
   (Start (_ BitVec 32) (
     s
     t
     #x00000000
     (bvneg  Start)
     (bvnot  Start)
     (bvadd  Start Start)
     (bvmul  Start Start)
     (bvand  Start Start)
     (bvlshr Start Start)
     (bvor   Start Start)
     (bvshl  Start Start)
   ))
))

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