summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus/array-grammar-store.sy
blob: 025a17b156b471f3fd792577ea92e63a9e72238c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; EXPECT: unsat
; COMMAND-LINE: --lang=sygus2 --sygus-out=status
(set-logic ABV)

(synth-fun f
  ((s (Array (_ BitVec 4) (_ BitVec 4))) (t (_ BitVec 4)))
  (Array (_ BitVec 4) (_ BitVec 4))
  )

(declare-var x (Array (_ BitVec 4) (_ BitVec 4)))

(constraint (= (= (store x #b0000 #b0000) (store x #b0001 #b0000)) (= (f x #b0000) (f x #b0001))))

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