summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus/cegqi-si-string-triv-2fun.sy
blob: fc8864f55381d51f17f75a0f4ab4df36be386e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; EXPECT: unsat
; COMMAND-LINE: --sygus-out=status
(set-logic ALL)

(synth-fun f ((x String) (y String)) String)
(synth-fun g ((x String) (y String)) String)

(declare-var x String)
(declare-var y String)

(constraint (= (f x y) (str.replace (str.++ x y) "A" "ABCD")))
(constraint (= (g x y) (str.replace (f x y) "B" "CDE")))

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